您好,登錄后才能下訂單哦!
假如需要復(fù)制一張圖片,一份word,一個(gè)rar包??梢砸宰止?jié)流的方式,讀取文件,然后輸出到目標(biāo)文件夾。
以復(fù)制一張4M的圖片舉例。
每次讀一個(gè)字節(jié):
ch = (char)System.in.read(); //讀入一個(gè)字符,返回讀到的字節(jié)的int表示方式,讀到末尾返回-1
復(fù)制時(shí)候一個(gè)字節(jié)一個(gè)字節(jié)的讀取、寫入,這樣是很慢的。設(shè)置一個(gè)用來緩沖的字符數(shù)組,會(huì)讓復(fù)制的過程快很多(每次讀入的字節(jié)變多)。
方便閱讀,類的名稱用中文描述
import java.io.*; public class 字節(jié)流的緩沖區(qū) { public static void main(String[] args) throws Exception { FileInputStream in=new FileInputStream("E:\\photo\\IMG.jpg"); //FileOutputStream中的文件不存在,將自動(dòng)新建文件 OutputStream out=new FileOutputStream("E:\\test.jpg"); byte[] buff=new byte[1024]; int b; long beginTime=System.currentTimeMillis(); while ((b=in.read(buff))!=-1) { out.write(buff,0,b); } long endTime=System.currentTimeMillis(); System.out.println("運(yùn)行時(shí)長(zhǎng)為: "+(endTime-beginTime)+"毫秒"); in.close(); out.close(); System.out.println("正常運(yùn)行!"); } }
這里設(shè)置的字節(jié)數(shù)組是1024個(gè)字節(jié)。復(fù)制的時(shí)間比一個(gè)字節(jié)一個(gè)字節(jié)的復(fù)制快很多。
//封裝了FileOutputStream管道之后,三種函數(shù)參數(shù) //write(b) 寫入一個(gè)b //write(byte[] b) 將字節(jié)數(shù)組全部寫入 //write(byte[] b,int off,int len) 例如write(byteTest,0,len)表示數(shù)組byteTest中從0開始長(zhǎng)度為len的字節(jié) //一般都用第3個(gè)
字節(jié)緩沖流
用BufferedInputStream和BufferedOutputStream來封裝FileInputStream和FileOutputStream
方便閱讀,類的名稱用中文描述
import java.io.*; public class 字節(jié)緩沖流 { public static void main(String[] args) throws Exception { BufferedInputStream bis=new BufferedInputStream(new FileInputStream("E:\\photo\\IMG.jpg")); BufferedOutputStream bos=new BufferedOutputStream(new FileOutputStream("E:\\test.jpg")); int len; long begintime=System.currentTimeMillis(); while((len=bis.read())!=-1) { bos.write(len); } long endtime=System.currentTimeMillis(); System.out.println("運(yùn)行時(shí)間為:"+(endtime-begintime)+"毫秒"); bis.close(); bos.close(); System.out.println("正常運(yùn)行"); } }
將String類的對(duì)象用字節(jié)流寫入文件時(shí)
import java.io.*; public class outFile { public static void main(String[] args) throws Exception { FileOutputStream out=new FileOutputStream("example.txt"); String str="測(cè)試"; byte[] b=str.getBytes(); for(int i=0;i<b.length;i++) { out.write(b[i]); } out.close(); System.out.println("輸出成功"); } }
當(dāng)需要以附加的形式寫入文件時(shí)
FileOutputStream out=new FileOutputStream("example.txt",true);
轉(zhuǎn)換流
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String x = in.read();
InputSteamReader和OutputStreamReader為轉(zhuǎn)換流,前者將字節(jié)流轉(zhuǎn)化為字符流,后者將字符流轉(zhuǎn)化為字節(jié)流
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。