您好,登錄后才能下訂單哦!
本文實(shí)例為大家分享了java文本分割器的具體代碼,供大家參考,具體內(nèi)容如下
import java.io.*; class cutIntoPieces{ public static void main(String[] args){ FileInputStream fis = null; FileOutputStream fos =null; //聲明輸入輸出流對象 int num = 0;//生成文本的序號從0開始 try{ int temp = 0;//初始化temp fis = new FileInputStream("f:/src/from.txt"); //產(chǎn)生輸入流對象,并傳入小說來源路徑 int m =1*1024*1024; //將文本分為1兆一份 byte[] buffer = new byte[m]; while(true){ for(num=0;;num++){ String path = "f:/src/to"+num+".txt"; //指定分割后文件的名稱 fos = new FileOutputStream(path); //生成輸出流對象 temp=fis.read(buffer,0,buffer.length); //調(diào)用輸入流的read()方法,三個參數(shù)分別代表 //讀出來的數(shù)據(jù)存在buffer中,偏移量為0,一次讀取多少byte位 if(temp == -1){ break; }//所有字節(jié)都讀取完成后temp=-1,這里不判斷temp 會越界 fos.write(buffer,0,temp); //對象進(jìn)行讀寫操作 } if(temp==-1){ break; } } } catch(Exception e){ System.out.println(e); } finally{ try{ fis.close(); fos.close(); //關(guān)閉接口 //最后會生成一個空的txt文件 在這里把那個空的txt文件刪除 String path2 = "f:/src/to"+num+".txt"; File f = new File(path2); if(f.exists()){ f.delete(); } } catch(Exception e){ System.out.println(e); } } } }
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。