一、IO流概述
IO流如上图,我们经常会从服务器下载一些软件保存在本地,在这个传输中就涉及到IO流。
我们来看这个过程,我们将服务器硬盘里的文件放在内存中,在这个过程我们称之为输入流(InPutStream)或读(Read)。然后我们将文件通过网线传输到我们的PC中,在这个过程中,相对于服务器而言,我们称之为输出流(OutPutStream)或写(Write),而相对于PC,我们称之为输入流(InPutStream)或读(Read)。而将PC内存中的文件保存在硬盘中时,我们称之为输出流(OutPutStream)或写(Write)。
IO流
因此,我们将IO流按照其方向分为输入流、输出流。他们的本质实现对内存而言,输入流表示将文件保存至内存,输出流表示将文件从内存中取出。按照其读取方式,分为字符流和字节流,字符流一次读取2个字节。
二、字符流
字符流1 FileInputStream 字节输入流
1.1 创建FileInputStream:
创建FileInputStream
有2种构造方法,即:FileInputStream(File file)
和FileInputStream(String name)
使用FileInputStream(String name)
时我们需要传入文件的路径,第一种方式传入相对路径,第二三种传入绝对路径
//String filepath="temp.txt";
//String filepath="E:\\Screen\\temp.txt";
String filepath="E:/Screen/temp.txt";
FileInputStream fis=new FileInputStream(filepath);
1.2 读取
1.2.1 read()方法,每次读取一个字节
read()
方法每次读取一个字节,当无数据可读取时,会返回-1,注意汉字占2个字节
缺点:频繁访问磁盘且效率低
int temp=0;
while((tem==fis.read())!=-1){
System.out..println(temp);
}
1.2.2 read(byte[] b)方法,将数据读取至byte数组中,方法表示每次读取多个字节
方法返回int
类型的值,表示这次读取了多少个字节,已经读到末尾,返回-1
byte[] bytes=new byte[1024];//每次读取1kb
int temp=0;
while((temp=fis.read(bytes))!-1){
System.out..println(bytes,0,temp);
}
1.3 关闭流
最后我们在finally
语句块中关闭流
finally{
try{
if(fis!=null){
fis.close();
}
}catch(Exception e){
e.printStackTrace();
}
}
2 FileOutputStream 字节输出流
2.1 创建FileOutputStream
FileOutputStream
的构造方法和FileInputStream
基本相同
FileOutPutStream(String filepath,bool append)
,方法中apeend
表示是否可以向文件中追加内容
FileOutputStream fos=new FileOutputStream(filepath);
2.3 写入数据
//将msg写入硬盘
String msg="Hello Java";
//将字符串转换为byte数组
byte[] bytes=msg.getBytes();
fos.write(bytes);
//推荐最后为了保证数据完全写入硬盘,因此需要执行刷新操作
fos.flush();//强制写入
2.3 关闭流
三、字节流
字节流
1 FileReader 字节输入流
1.1 创建FileReader
FileReader
的构造方法与FileInPutStream
相同
FileReader fr=new FileReader(filepath);
1.2 读取
chart[] charts=new Char[512];//读取1kb
int temp=0;
while((temp=fr.read(charts))!=-1){
System.out.println(new String(charts,0,temp));
}
1.3 关闭流
2 FileWriter 字节输出流
FileWriter
的构造方法和FileOutputStrem
的构造方法相同
2.1 创建FileWriter
FileWritet fw=new FileWriter(filepath);
2.1 写入数据
当我们写入数据,我们可以调用以下方法
write(char[] cbuf);//写入字符数组
write(int c);//写入单个字符
write(String str);//写入字符串
2.3 关闭流
四、缓冲流
BufferedReader br=new BufferedReader(new FileReader(filename));
Strint temo=null;
//调用readLine()读取一行数据流
while((temp=br.readLine())!=null){
System.out.println(temp)
}
//关闭流
br.close();//只用关闭最外面的包装流
BufferedWriter bw=new BufferedWriter(new FileWriter(filename));
bw.write(String str);
bw.newLine();//写入行分隔符
bw.flush();
//关闭流
bw.close();
五、转换流
FileInputStream fis=new FileInputStream(filepath);
InputStreamReader isr=new InputStreamReader(fis);
BufferedReader br=new BufferedReader(isr);
Strint temo=null;
//调用readLine()读取一行数据流
while((temp=br.readLine())!=null){
System.out.println(temp)
}
//关闭流
br.close();//只用关闭最外层的包装流
五、保存对象
序列化
//创建对象,这里的对象需要序列化(序列化:在Java中使我们的类实现Serilizable)
User user=new User();
ObjectOutputStream oos=new ObjectOutputStream(new FileioutputStrema(filepatj));
ooa.writeObject(oos);
oos.flush();
oos.close();
反序列化
ObjectInputStream ois=new ObjectStreann(nwq FileInputSteam(filepath));
ois.readObject();
ois.close();
六 File
- file和流无关,不能通过完成读写操作
- file是文件和目录路径名的抽象变现形式
File构造方法:
File(Sting pathname);
File(URI uri );
其他方法:
File.exists();
//判断文件或目录是否存在
File.mkdir()
//创建目录
File.createnewFile()
//创建文件
File.canExecute()
// 测试应用程序是否可以执行此抽象路径名表示的文件。
File.canRead()
// 测试应用程序是否可以读取此抽象路径名表示的文件。
File.canWrite()
·试应用程序是否可以修改此抽象路径名表示的文件。
File.delete()
// 删除此抽象路径名表示的文件或目录。
File.getAbsoluteFile()
// 返回此抽象路径名的绝对路径名形式。
File.getAbsolutePath()
// 返回此抽象路径名的绝对路径名字符串。
File.getName()
// 返回由此抽象路径名表示的文件或目录的名称。
File. getParent()
返回此抽象路径名父目录的路径名字符串;如果此路径名没有指定父目录,则返回 null。
File. isAbsolute()
测试此抽象路径名是否为绝对路径名。
File.isDirectory()
测试此抽象路径名表示的文件是否是一个目录。
File.isFile()
测试此抽象路径名表示的文件是否是一个标准文件。
File.listFiles()
返回一个抽象路径名数组,这些路径名表示此抽象路径名表示的目录中的文件。
网友评论