io流
1.file类:在Java中表示(带路径的)文件或目录。
2.file的常用属性和方法:
1.给定路径创建file对象,File file = new file ("盘:/路径/指定目标")。
2.文件基本属性:
System.out.prinr(file.canExecute());
System.out.prinr(file.canRead());
System.out.prinr(file.canWrite());
3.文件创建 删除
if(!file.exists()){
booleam r;
tye{
r = file.createNewfile();
if(r){
System.out.print()
}
}eatch(IOException e){
e.printstacktrace();
}
}
删除:file.delete();
创建文件时会抛出 检查时异常TOException
3.file 的相关路径:
1.获取file的绝对路径:s.o.p(file.getAbsolutepath())
2.获取file的创建时的路径字符串:s.o.p(file.getpath())
3.获取文件或目录的名字:s.o.p(file.getname())
4.获取文件的父目录:s.o.p(file.getparent())
如果file是相对路径,相对路径就是不包含盘所在的工程目录。
4.目录的创建:
if(!file.exists()){
boolean r;
try{
创建单个:r = file.mkdir();
创建多个:r = file.mkdirs();
if(r){
S.o.p(创建成功)
}
}eatch(Exception e){
e.printStackTrace();
}
}
5.目录的遍历:
list():返货一个file表示的目录中的子目录或者文件,字符串数组类型
例:file file = new file("盘:/路径/指定目标")
String[] list = file.list();
for(String str : list){
s.o.p(str);
file f = new file(file.getpath()+"盘:/路径/+str(指定目标)")
if(f.isDirectory()){
s.o.p( 目录)
}else{
s.o.p( 文件)
}
}
listfiles():返回一个file表示 的目录中的子目录或者文件,file为数组类型
例:file file = new file("盘:/路径/指定目标")
String[] list = file.list();
file[] listfiles = file.listfiles();
for(file f : listfiles){
s.o.p(f.getname());
if(f.isDirectory()){
s.o.p( 目录)
}else{
s.o.p( 文件)
}
}
6.io流
6.1 流(stream):流是一连串流动的数据(字节字符);以先进先出的方式发送的信息的通道。
6.1.1 输入流和输出流
输入流:数据从数据源流入程序的过程称为输入流,可以理解为从源数据源读取数据到程序的过程。
输出流:数据从程序流出到目的地的过程称为输出流,可以理解为把数据从程序写入目的地的过程
数据源一般指提供数据的原始媒介,一般为文件,数据库,云端和其它硬件等能提供数据的媒介
6.1.2 流的分类:按照流向可以分为输入流和输出流,按照单元处理可以分为字节流和字符流,按照功能分为节点流和转换流
6.1.3 inputstream/ outputstream
inputstream是所有字节输入流的抽象父类,提供read读取一个字节,read(byte【】buf)读取一定量的字节到缓冲区数组buf中。
outputstream是所有字节输出流的抽象父类,提供了write写入一个字节;write(byte【】buf)写入一定量的字节到输出流
fileinputstream文件字节输入流,专门
用于从文件中读取字节dao程序内存中,fileoutputstream文件字节输出流,专门用于从内存中写入字节到文件中。
例:1.创建管道:
FileInputStream in = null;
try {
in = new FileInputStream(file);
2.从管道读取一个字节
int t;
t = in.read();
t = in.read();
t = in.read();
t = in.read();
System.out.println(t);
循环读取:
StringBuilder sb = new StringBuilder();
while( (t=in.read()) != -1 ) {
sb.append((char)t);
}
System.out.println(sb.toString());
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch(IOException e) {
e.printStackTrace();
}
3.关闭流管道
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
读取多个字节:
例:
1.创建管道:
FileInputStream in = null;
try {
in = new FileInputStream(file);
2.从管道读取多个字节到缓冲区
byte[] buf = new byte[5];
int len;
len = in.read(buf);
len = in.read(buf);
len = in.read(buf);
len = in.read(buf);
for(byte b:buf) {
System.out.print((char)b+"\t");
}
System.out.println(len);
3.通过循环读取文件
byte[] buf = new byte[5];
int len;
StringBuilder sb = new StringBuilder();
while( (len=in.read(buf)) != -1 ) {
//读取的内容是原始二进制流,需要根据编码的字符集解码成对于字符
String str = new String(buf,0,len);
sb.append(str);
}
System.out.println(sb.toString());
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch(IOException e) {
e.printStackTrace();
}
4.关闭流管道:
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
按照指定编码写入文件:
try {
1.创建输出流管道
out = new FileOutputStream(file);
2.写入数据到管道中
//一次写入一个字节
out.write(97);
out.write(98);
out.write(99);
一次写入多个字节
String str = "hello world";
byte[] buf = str.getBytes();
out.write(buf);
byte[] buf = str.getBytes("UTF-8");
out.write(buf);
System.out.println("写入完成!");
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
3.关闭流
try {
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
注意事项:
1字符串写入文件时一定会存在编码问题
2使用utf8编码写入文件时,如果不含中文时,win系统会对文件的编码造成误判。
3 通过字节流写入文件时,向管道写入一个字节,该字节立即写入文件中。
InputStream/OutputStream 用于字节的读写。主要用于读取二进制文件(图片、音频、视频),也可以读取文件性文件。
1.6.4 reader/write
Reader 是字符输入流的抽象父类,提供了
read 一次读取一个字符
read(char[] cbuf) 一次读取多个字符到字符缓冲区cbuf,返回长度表示读取的字符个数。
Writer 是字符输出流的抽象父类,提供了
write
write(char[] cbuf)
write(string)
FileReader文件字符输入流,专门用于读取默认字符编码文本性文件。
FileWriter文件字符输出流,专门用于写入默认字符编码的文本性文件。为了提高效率,FileWriter内部存在一个字节缓冲区,用于对待写入的字符进行统一编码到字节缓冲区,一定要在关闭流之前,调用flush方法刷新缓冲区。
1.7 转换流:InputStreamReader 继承于Reader,是字节流通向字符流的桥梁,可以把字节流按照指定编码 解码 成字符流。OutputStreamWriter 继承于Writer,是字符流通向字节流的桥梁,可以把字符流按照指定的编码 编码 成字节流。
1.7.1 转换流工作原理:
注意事项:1.win平台默认的utf8编码的文本性文件带有BOM,java转换流写入的utf8文件不带BOM。所以用java读取手动创建的utf8文件会出现一点乱码(?hello中国,?是bom导致的)2. 一句话:用字符集编码,一定用字符集解码!!
1.8bufferedreader/bufferedfeader
BufferedReader继承于Reader,提供了
read
read(char[] cbuf)
readLine() 用于读取一行文本,实现对文本的高效读取。
BufferedReader 初始化时需要一个reader,本质上BufferedReader在reader的基础上增加readLine()的功能。
BufferedWriter继承于Writer,提供了
write
write(char[] cbuf)
write(string)
newline() 写入一个行分隔符。