圖文詳解Java中的字節輸入與輸出流

字節輸入流

java.io.InputStream抽象類是所有字節輸入流的超類,將數據從文件中讀取出來。

字節輸入流結構圖

在Java中針對文件的讀寫操作有一些流,其中介紹最常見的字節輸入流。

FileInputStream類

FileInputStream流被稱為字節輸入流,對文件以字節的形式讀取操作,例如文字,圖片等。

構造方法:

  • FileInputStream(File file) ;通過File文件對象創建
  • FileInputStream(String name) ;通過一個文件路徑字符串創建

常用讀取方法:

read() 方法,從文件的第一個字節開始讀取,每執行一次就讀取一個字節,如果文件為空,則讀取返回-1,挨個字節讀取對於中文字符會出現亂碼。

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;

public class dome2{
	public static void main(String[] args){
	  File file=new File("D:/.../...txt");   //創建file對象
	  FileInputStream fi=null;
	 try {
		 fi=new FileInputStream(file);   //創建字節輸入流
		 
		 int read;   
		 
		 while((read=fi.read())!=-1) {   //數據不為空的情況下循環讀取
			 System.out.print((char)read);   //將讀取的數據打印
		 }
	} catch (FileNotFoundException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	} catch (IOException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	}finally {
		if(fi!=null) {
			try {
				fi.close();
			} catch (IOException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}
	}
	 
   }
}

read(byte[] b) ,從此輸入流中讀取b.length個字節的數據讀入到byte數組中,針對中文字符讀取產生亂碼,需要編碼,如果記事本存儲的漢字是什麼格式的就在讀取的時候改成什麼格式,例如我現在記事本的編碼格式是ANSI,在讀取的時候就是按照ANSI或者gbk編碼格式讀取。

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;

public class dome2{
	public static void main(String[] args){
	  File file=new File("D:/../...txt");   //創建file對象
	  FileInputStream fi=null;
	 try {
		 fi=new FileInputStream(file);   //創建字節輸入流
		 
		 int read;   
		 byte[] bytes=new byte[1024];  //創建一個數組,講讀取的字節存入數組
		 while((read=fi.read(bytes))!=-1) {   //數據不為空的情況下循環讀取
			 System.out.print(new String(bytes,0,read,"gbk"));   //將讀取的數據按字符串打印
		 }
	} catch (FileNotFoundException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	} catch (IOException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	}finally {
		if(fi!=null) {
			try {
				fi.close();
			} catch (IOException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}
	}
	 
   }
}
方法名 說明
void close() 關閉此文件輸入流並釋放關於此流有關的所有系統資源
int read(byte[] b, int off, int len) 從此輸入流中將len個字節的數據讀入到byte數組中
int available() 返回下一次對此輸入流調用的方法可以不受阻塞地從此輸入流讀取(或跳過)的估計剩餘字節數。
long skip(long n) 從輸入流中跳過並丟棄 n 個字節的數據。

字節輸出流

java.io.OutputStream抽象類是所有字節輸出流的超類,該類用於對文件寫入數據。

字節輸出流結構圖:

FileOutputStream類

FileOutputStream類是向文件中以字節的形式寫入數據,例如圖像和圖片等。

構造方法:

  1. FileOutputStream(File file);通過一個file對象表示的文件創建一個字節輸出流。
  2. FileOutputStream(File file, boolean append);通過一個file對象表示的文件創建一個字節輸出流,append表示追加,true代表往後追加,false則要全部覆蓋,文件裡隻存留剛寫入的數據。
  3. FileOutputStream(String name);通過一個指定路徑名字符串創建一個字節輸出流對象。
  4. FileOutputStream(String name, boolean append);通過一個指定路徑字符串創建一個字節輸出流對象,append同上。

常用寫入方法:

  1. write(byte[] b); 將b.length個字節從指定的byte數組中寫入到此輸出流中。
  2. write(byte[] b, int off, int len); 將指定的byte數組從偏移量off開始到len個字節寫入到此輸出流中。
  3. write(int b); 將指定字節寫入到此輸出流中。
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;


public class dome2{
	public static void main(String[] args){
	  File file=new File("D:/hello.txt");   //創建file對象
	  FileOutputStream fo=null;
	  
	  try {
		fo=new FileOutputStream(file);
		String str="你好,java!";
		byte[] bytes=str.getBytes();
		fo.write(bytes);
	} catch (FileNotFoundException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	} catch (IOException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	}finally {
		if(fo!=null) {
			try {
				fo.close();
			} catch (IOException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}
	}

   }
}

總結

到此這篇關於Java中字節輸入與輸出流的文章就介紹到這瞭,更多相關Java字節輸入與輸出流內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: