本文主要給大家介紹java的InputStream 流的使用。
(1)FileInputstream: 子類,讀取資料的通道
使用步驟:
1.擷取目標檔案:new File()
2.建立通道:new FileInputString()
3.讀取資料:read()
4.釋放資源:close()
//一些預設要匯入的包import java.io.File;import java.io.FileInputStream;import java.io.IOException;
public static void main(String[] args) throws IOException {// TODO Auto-generated method stub//分別調用方法查看效果test1();System.out.println("-------------------------------------------");test2();System.out.println("-------------------------------------------");test3();System.out.println("-------------------------------------------");test4();}
(2)讀取資料的三種方式
1.直接讀取 (一次只能一個位元組)
int date = fileInputStream.read(); char date3 = (char)fileInputStream.read();
//方式一 直接列印public static void test1() throws IOException{//(1)擷取目標檔案路徑File file = new File("C:\\Users\\joke\\Desktop\\Demo1.java");//(2)根據目標檔案路徑 建立通道: new FileInputStream(file)FileInputStream fileInputStream = new FileInputStream(file);//(3)讀取資料 :read();int date = fileInputStream.read();//這裡是int類型int date2 = fileInputStream.read();//char date3 = (char)fileInputStream.read(); //以char類型顯示System.out.println(date+"\\"+date2+"\\"+date3);//(4)釋放資源fileInputStream.close();}
2.單獨使用for迴圈(效率低)
for(int i = 0; i < file.length();i++){ System.out.print((char)fileInputStream.read()); }
//方式二 迴圈遍曆public static void test2() throws IOException{//通過時間測試效率long startTime = System.currentTimeMillis();File file = new File("C:\\Users\\joke\\Desktop\\Demo1.java");FileInputStream fileInputStream = new FileInputStream(file);//for迴圈for(int i = 0; i < file.length();i++){System.out.print((char)fileInputStream.read());}fileInputStream.close();long endTime = System.currentTimeMillis();System.out.println("讀取檔案所花時間:"+(endTime-startTime));}
3.Byte[ ] 緩衝區(只能讀取指定的位元組數不能讀取一個完整的檔案)
byte[] bt = new byte[1024]; int count = fileInputStream.read(bt); System.out.println(new String (bt,0,count));
//方式三 建立緩衝區(只能讀取制定的大小,不能讀取一個完整的檔案)public static void test3() throws IOException{File file = new File("C:\\Users\\joke\\Desktop\\Demo1.java");FileInputStream fileInputStream = new FileInputStream(file);//建立緩衝區,加快讀取資料,確定要讀取的位元組大小byte[] bt = new byte[1024];//read() 讀取位元組int count = fileInputStream.read(bt);System.out.println(count); //顯示讀取到的位元組數System.out.println(new String (bt,0,count));//將位元組轉為字串顯示fileInputStream.close();}
4.緩衝區和迴圈結合。緩衝區一般設定為1024的倍數。理論上設定的緩衝區越大,讀取效率越高
byte[] bt = new byte[1024]; int count = 0; while((count = fileInputStream.read(bt)) != -1){ System.out.println(new String (bt,0,count)); }
//方式四 迴圈與緩衝區結合(效率高)public static void test4() throws IOException{//通過時間測試效率long startTime = System.currentTimeMillis();File file = new File("C:\\Users\\joke\\Desktop\\Demo1.java");FileInputStream fileInputStream = new FileInputStream(file);//緩衝區一般設定為1024的倍數。理論上設定的緩衝區越大,讀取效率越高byte[] bt = new byte[1024];int count = 0;//read返回 -1 時,證明已經遍曆完while((count = fileInputStream.read(bt)) != -1){//字串型顯示(從bt中的第0個位元組開始遍曆count個長度)System.out.println(new String (bt,0,count));}fileInputStream.close();long endTime = System.currentTimeMillis();System.out.println("讀取檔案所花時間:"+(endTime-startTime));}
陌陌說:
在以上,對比第二個和第四個方法,會探索方法四的效率是比較高的,所以推薦使用的四個方法
在這裡我們是直接拋出異常,除了拋出之外我們還可以使用
try{ }cater{ }finally{ }
的方式來處理異常
以上所述是小編給大家介紹的java IO流 之 輸入資料流 InputString()的使用,希望對大家有所協助,如果大家有任何疑問請給我留言,小編會及時回複大家的。在此也非常感謝大家對雲棲社區網站的支援!