云計算
這篇文章將為大家詳細講解有關(guān)java中怎么讀取大txt文件,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
當(dāng)文件過于大的時候我們?nèi)绻€用傳統(tǒng)的方式讀取很容易造成內(nèi)存滿我們應(yīng)該拆開讀取:
用nio方式把大文件分成固定大小的小文件(小于2g,自己綜合分析設(shè)置多大,每個文件太大容易浪費空間,太小浪費時間),然后再循環(huán)用方案1去讀每個小文件。
publicstaticvoidreadlargetextwithnio(){
try{
longstarttime=system.currenttimemillis();
//要讀取的文件
fileinputstreamfin=newfileinputstream(\”/applications/demo/aaaa.txt\”);
filechannelfcin=fin.getchannel();
//文件過大拆分成128m大小的txt文件
bytebufferbuffer=bytebuffer.allocate(128*1024*1024);
while(true){
buffer.clear();
intflag=fcin.read(buffer);
if(flag==-1){
break;
}
buffer.flip();
//輸出到指定的位置
fileoutputstreamfileinputstream=newfileoutputstream(\”/applications/demo/\” uuid.randomuuid().tostring() \”.txt\”);
filechannelchannel=fileinputstream.getchannel();
channel.write(buffer);
}
longendtime=system.currenttimemillis();
system.out.println(\”共消耗:\” (endtime-starttime)/1000 \”秒\”);
//分割成了每一個文件大小是128m,然后在用傳統(tǒng)的方法去讀取即可
}catch(exceptione){
}
}
關(guān)于java中怎么讀取大txt文件就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。