流:
流 | 字符流 | 字节流 |
---|---|---|
输入 | reader | InputStream |
输出 | writer | OutputStream |
OutPutStream字节输出流
write(int):一次写入一个字节
write(byte[] b)
如果第一个字节是正数(0~127),查询ASCII码表
如果第一个字节是负数,第一个自己与第二个字节组成一 个中文显示,查询GBK
write(byte[],int,int):从数组中从off开始写入,写len个长度
close()
构造:
new FileOutPutStream(str); new FileOutPutStream(file); new FileOutputStream(file,append); //true,追加。false,覆盖 //str:文件路径。file:目标文件
换行:\r\n
字:write(“你好”.getByte())
InputStream,所有字节输入流超类
bis = new FileInputStream("b.txt"); len = bis.read(bytes);//返回读入有效个数 System.out.plantln(new String(bytes));
继承InputStream,文件字节输入流
构造:
new FileInputStream(str); new FileInputStream(file); 1.创建fis对象 2. 将fis对象指向构造的路径文件
由于中文在utf-8中,一个汉字占3个字节,在gbk中,一个汉字占2个字节。字节流读入时,单个字节来读入的。显示是一些数字,将数字转为char型时,就汉字与数字不匹配。造成乱码
a.txt中有 “你好” 两个汉字 fis = new FileInputStream("a.txt"); while((len=fis.read())!=-1){ System.out.plantln(len);//显示为 /** 228 189 160 229 165 189 */ } while((len=fis.read())!=-1){ System.out.plantln((char)len); /** ä ½ å ¥ ½ */ }
write(int):将int数据写入到文件中
write(byte[]):一次将数组中的数据写入到文件中
write(byte[],off,len):将数组数据写入文件,从off开始,len个长度
read():读一个字节,返回值int就是读的数据。文件为空时,返回-1
read(byte[]):读入一个数组的数据,返回值是读入长度。没有读入时,返回-1。循环读入时,数组数据会被覆盖。
构造:
new FileReader(str)
new FileReader(file)
new FileWriter(str)
new FileWriter(file)
new FileWriter(file,append);true续写。false覆盖
try(FileWriter fw = new FileWriter("a.txt")){ fw = new FileWriter("a.txt"); fw.write("niaho"); }catch(IOException e){ xxx; } 这样定义在try的流对象。会自动关闭,所以不必写
继承于hashtable,是双列集合。唯一一个与IO流结合的集合。可以使用方法store将集合中数据持久化在硬盘中,load方法将硬盘文件读取到集合中。Properties<String,String>
setProperty(key,value):存储集合键值
getProperty(key):通过键获取值
stringPropertyNames():相当于map的keyset方法。获取一个set集合
store(流对象,str):将集合内容存入硬盘,str是注释字符串
格式一般是“键=值”
load(输入流对象):将目标文件数据按键值对读入到集合中