歡迎工作一到五年的Java工程師朋友們加入Java群: 891219277 群內提供免費的Java架
IO流(輸入流、輸出流)
位元組流、字元流
1.位元組流:
InputStream、OutputStream
InputStream抽象了應用程式讀取資料的方式;
OutputStream抽象了應用程式寫出資料的方式;
2.EOF=End 讀到-1就讀到結尾
3.輸入流的基本方法:
int b=in.read();讀取一個位元組無符號填充到int低八位;-1是EOF;
in.read(byte[] buf)
in.read(byte[] buf,int start,int size)
4.輸出流基本方法:
out.write(int b) 寫出一個byte到流,b的低8位;
out.write(byte[] buf) 將buf位元組陣列都寫入到流;
out.write(byte[] buf,int start,int size)
5.FileInputStream--->具體實現了在檔案上讀取資料,下面請看最簡單的檔案讀取:
複製程式碼
package com.wxd.test2;
import java.io.FileInputStream;
import java.io.IOException;
public class IOUtil {
/**
- 讀取指定檔案內容,按照16進位制輸出到控制檯
- 並且每輸出10個byte換行
- @param fileName
*/
public static void printHex(String fileName) throws IOException {
//把檔案作為位元組流進行讀操作
FileInputStream in =new FileInputStream(fileName);
int b;
int i=1;
while ((b=in.read())!=-1){
if(b<=0xf){
//單位數前面補0
System.out.print(0);
}
System.out.print(Integer.toHexString(b)+" ");
if(i++%10==0){
System.out.println();
}
}
in.close();
}
}
複製程式碼
6.FileOutputStream實現了向檔案中寫出byte資料的方法:
複製程式碼
package com.wxd.test2;
import java.io.FileOutputStream;
import java.io.IOException;
public class FileOutDemo1 {
public static void main(String[] args) throws IOException{
//如果該檔案不存在則直接建立,如果存在刪除後建立
FileOutputStream out=new FileOutputStream("demo/out.dat");
out.write('A');//寫出了‘A’字元的低八位
out.write('B');//寫出了‘B’字元的低八位
int a=10;//write只能寫低八位寫一個int需要寫四次每次8位
out.write(a>>>24);
out.write(a>>>16);
out.write(a>>>8);
out.write(a);
byte[] zg="中國".getBytes("UTF-8");
out.write(zg);
out.close();
IOUtil.printHex("demo/out.dat");
}
}
複製程式碼
7.DataOutputStream/DataInputStream對“流”功能的擴充套件,可以更加方便的讀取int,long,字元等型別資料:
writeInt()/writeDouble()/writeUTF()
複製程式碼
package com.wxd.test2;
import java.io.DataOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
public class DosDemo {
public static void main(String[] args) throws IOException {
String file="demo/dos.dat";
DataOutputStream dos=new DataOutputStream(new FileOutputStream(file));
dos.writeInt(10);
dos.writeInt(-10);
dos.writeLong(10l);
dos.writeDouble(10.5);
//採用UTF-8編碼寫出
dos.writeUTF("中國");
//採用utf-16be編碼寫出
dos.writeChars("中國");
dos.close();
}
}
複製程式碼
複製程式碼
package com.wxd.test2;
import java.io.DataInputStream;
import java.io.FileInputStream;
import java.io.IOException;
public class DisDemo {
public static void main(String[] args) throws IOException {
String file="demo/dos.dat";
DataInputStream dis=new DataInputStream(new FileInputStream(file));
int i=dis.readInt();//其實做了4次read,因為int是32位
System.out.println(i);
i=dis.readInt();
System.out.println(i);
long l=dis.readLong();//其實做了8次read,應為long是64位
System.out.println(l);
double d=dis.readDouble();
System.out.println(d);
String s=dis.readUTF();
System.out.println(s);
dis.close();
}
}
複製程式碼
7.BufferedInputStream&BufferedOutputStrean這兩個流為IO提供了帶緩衝區的操作,一般開啟檔案進行寫入或讀取操作時,都會加上緩衝,這種流模式提高了IO效能
從應用程式中把資料放入檔案,相當於將一缸水倒入到另一個缸中:
FileOutputStream--->write()方法相當於一滴一滴地把水轉移過去
DataOutputStream--->writeXxx()方法會方便一些,相當於一瓢一瓢的把水轉移過去
BufferedOutputStream--->write()方法相當於一瓢一瓢先放入桶中,再從桶中倒入缸中
複製程式碼
/**
進行檔案的拷貝,利用帶緩衝的位元組流
- @param srcFile
- @param destFile
- @throws IOException
*/
public static void copyFileByBuffer(File srcFile,File destFile) throws IOException{
if(!srcFile.exists()){
throw new IllegalArgumentException("檔案:"+srcFile+"不存在");
}
if(!srcFile.isFile()){
throw new IllegalArgumentException(srcFile+"不是檔案!");
}
BufferedInputStream bis=new BufferedInputStream(new FileInputStream(srcFile));
BufferedOutputStream bos=new BufferedOutputStream(new FileOutputStream(destFile));
int c;
while ((c=bis.read())!=-1){
bos.write(c);
bos.flush();//重新整理緩衝區,否則寫入不到;
}
bis.close();
bos.close();
}
複製程式碼
字元流
1.編碼問題
2.認識文字和文字檔案
3.Java的文字(char)是16位無符號的整數,是字元的unicode編碼(雙位元組編碼)檔案是byte byte byte...的資料序列
文字檔案是文字(char)序列按照某種編碼方案(utf-8,utf-16be,gbk)序列化為byte的儲存
4.字元流(Reader Writer):--->操作的是文字檔案
字元的處理,一次處理一個字元
字元的底層任然是基本的位元組序列
字元流的基本實現
InputStreamReader 完成byte流解析為char流,按照編碼解析
OutputStreamWriter 提供char流到byte流,按照編碼處理
複製程式碼
package com.wxd.test2;
import java.io.*;
public class IsrAndOswDemo {
public static void main(String[] args) throws IOException{
//InputStreamReader被稱為橋樑流
FileInputStream in=new FileInputStream("demo\test.txt");//預設專案的編碼,操作的時候要寫檔案本身的編碼
InputStreamReader isr=new InputStreamReader(in,"utf-8");
FileOutputStream out=new FileOutputStream("demo\test2.txt");
OutputStreamWriter osw=new OutputStreamWriter(out,"utf-8");
// int c;
// while ((c=isr.read())!=-1){
// System.out.print((char)c);
// }
char[] buffer=new char[8*1024];
int c;
//批量讀取,放入buffer這個字元陣列,從第0個位置開始放置,最多放buffe.length個
//返回的是讀到的字元的個數
while ((c=isr.read(buffer,0,buffer.length))!=-1){
String s=new String(buffer,0,c);
System.out.println(s);
osw.write(buffer,0,c);
osw.flush();
}
isr.close();
osw.close();
}
}
複製程式碼
5.FileReader/FileWriter(這種方式bu)
複製程式碼
package com.wxd.test2;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
public class FrAndFwDemo {
public static void main(String[] args) throws IOException{
FileReader fr=new FileReader("demo\test.txt");
FileWriter fw=new FileWriter("demo\text2.txt",true);//設定為true在後面追加
char[] buffer=new char[2056];
int c;
while ((c=fr.read(buffer,0,buffer.length))!=-1){
fw.write(buffer,0,c);
fw.flush();
}
fr.close();
fw.close();
}
}
複製程式碼
6.字元流的過濾器
BufferedReader ----->readLine一次讀一行
BufferedWriter/PrintWriter ---->寫一行
複製程式碼
package com.wxd.test2;
import java.io.*;
public class BrAndBwOrPwDemo {
public static void main(String[] args) throws IOException {
//對檔案進行讀寫操作
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream("demo\test.txt")));
/BufferedWriter bw=new BufferedWriter(new OutputStreamWriter(new FileOutputStream("demo\test3.txt")));/
PrintWriter pw = new PrintWriter("demo\test3.txt");
String line;
while ((line = br.readLine()) != null) {
System.out.println(line);//一次讀一行,並不能識別換行
/bw.write(line);
//單獨寫出換行操作
bw.newLine();
bw.flush();/
pw.println(line);
pw.flush();
}
br.close();
// bw.close();
pw.close();
}