




版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
1、java中的io整理-編程開發技術java中的10整理原文出處:rollenholt寫在前面:本文章基本覆蓋了 jevalo的全部內容,人眩新10沒冇涉及,因為 我想和這個分開,以突出那個的重要性,新10哪一篇文章還沒有開始寫,估計 很快就能和大家見而。照舊,文章依舊以例子為主,因為講解內容的java書很 多了,我覺的學以致用才是真。代碼是寫出來的,不是看出來的。最后歡迎人家提岀意見和建議。【案例1】創建一個新文件import java io. *;class hellopublic static void main(string args) file f二new file(d:hello.
2、txt);try f. crcatcncwfilco ;catch (exception e) e. printstacktrace ();【運行結果】:程序運行之后,在d盤下會有一個名字為hello, txt的文件。【案例2】file類的兩個常量import java io. *;class hellopublic static void main(string args) system. out. println(file. separator);system, out. prinlln(file. pathseparator);【運行結果】: 此處多說兒彳山有些同學可能認為,我直接在wi
3、ndows k使用進行分割不行嗎? 當然是可以的。但是在limix下就不是了。所以,耍想使得我們的代碼跨平臺, 更加健壯,所以,大家都采用這兩個常量吧,其實也多寫不了幾行。呵呵、現在我們使用file類中的常量改寫上面的代碼:import java io. *;class hellopublic static void main (string args) string f訂ename二d:+f訂e. separator+hello. txt"file f=new file(filename);try f. createnewfile ();catch (exception e) e.
4、 printstacktrace ();你看,沒有多寫多少吧,呵呵。所以建議使用f訂e類中的常量。刪除一個文件/*刪除一個文件* */import java. io. *;class hellopublic static void main(string args) string filename=,d:z,+filc. scparator+hcllo. txt"file f=new file(filename);if (f. exists () f. delete ();else system, out. printin ("文件不存在);創建一個文件夾 /*創建一個文件
5、夾* */import java. io. *;class hellopublic static void ni3in( str in g args) string filename二"d:"+file separator+,zhelloz,; file f=new file(filename);f. mkdir ();【運行結果】:d盤下多了一個hello文件夾列出指定目錄的全部文件(包括隱藏文件):/*使用list列出指定目錄的全部文件* */import javaio.*;class hellopublic static void main(string args)
6、string filename=,/d:z,+file separator;file f=ncw file(filename);string str二f. list();for (int i 二 0; i str.length; i+) system, out. prinlln(stri);【運行結果】:$recycle. bin360360downloads360rec360softmoveconf ig. msidadownloadsdriversbackupecl ipsejava web整合開發和項目實戰lenovomsocacheprogramprogram filespythonr
7、ecygler. 8f92da15-a229-a4d5-b5ce-5280c8b89c19system volume informationtomcat6 varvod_cache_data新建文件夾(你的運行結果應該和這個不一樣的,呵呵)但是使用list返冋的是string數組,。而且列出的不是完整路徑,如果想列出 完整路徑的話,需要使用listfiles.他返回的是file的數組 列出指定目錄的全部文件(包括隱藏文件):/*使用listfiles歹!j出指定目錄的全部文件* listfiles輸出的是完整路徑* */import java. io. *; class hellopublic
8、 static void main(string args) string filename二"d:"+file separator;file f=new file(filename);file str=f. listfiles();for (int i 二 0; i < str. length; i+) system out println(stri);【運行結果】:d:$recycle.bind:360d:360downloadsd:360recd:360softmoved:config.msid:dad:downloadsd:driversbackupd:ecl
9、ipsed:java web整合開發和項目實戰d:lcnovod:ms0cached:programd:program filesd:pythond:recygler. 8f92da15-a229-a4d5-b5ce-5280c8b89c19d:system volume informationd:tomcat6d:vard:vod_cache_datad:新建文件夾通過比較可以指定,使用listfiles更加方便、判斷一個指定的路徑是否為目錄/*使用isdirectory判斷一個指定的路徑是否為目錄 * */import java. io. *;class hcllopublic stati
10、c void main(string args) string filename=zzd:/z+file. separator; file f二new file(filename); if (f. isdirectory() system out println("yes");else system, out printin("no");【運行結果】:yes搜索指定目錄的全部內容/*列出指定目錄的全部內容* */import java io. *;class hellopublic static void main(string args) string
11、 filename二d:+file. separator; file f二new file(filename); print (f);public static void print(file f) if (f!二null)if (f. isdirectory() file filearray=f. listfiles();if (filearray!=null)for (int i 二 0; i < filearray. length; i+) 遞歸調用 print(filearray i);else system, out. pri ntln(f);【運行結果】:d:tomca t6
12、workc3tal in alocalhostncv clorgeip3chcjspfreinicpagcswc b4welcome_jsp. javad:tomcat6workcatalinalocalhostnevelorgapachejsphelp_005fhome _jsp. classd:tomcat6workcatalinalocalhost'nevelorgapachejsphelp_005fhome _jspjavad:tomcat6workcatalinalocalhostnevelorgapachejsphome_jsp. clas sd:tomcat6workca
13、talinalocalhostnevelorgapachejsphonie_jsp javad:tomcat6workcatalinalocalhost'nevelorgapachejspindex_jsp. classd:tomcat6workcatalinalocalhostnevelorgapachejspindex_jsp. jav ad:tomcat6workcatalinalocalhostnevelorgapachejsplogin_jsp. classd:tomcat6workcatalina'localhost'ncvcl'org'ap
14、achc'jsp'login jsp. jav ad:tomcat6workcatalinalocalhostnevelorgapachejspmodify_005fus er_005finfo_jsp. classd:tomcat6workcatalinalocalhostnevelorgapachejspmodify_005fus er_005finfo jsp.javad:tomcat6workcatali nalocalhos tnevelorgapachejspregi ster_005f notify_jsp. classd:tomcat6workc3talinal
15、ocalhostncvclorgeip3chcjsprcgistcr_005f notify_jsp. javad:tomcat6workcatalinalocalhostnevelorgapachejspsign_005fup_j sp. classd:tomcat6workcatalinalocalhostnevelorgapachejspsign_005fup_j sp. javad:tomcat6workc3talinalocalhostncvclorgeip3chcjsptransit_jsp. c lass【使用randomaccessf訂e寫入文件】/*使用randomacccs
16、sfilc寫入文件* */import java. io. *;class hellopublic static void main(string args) tbrows toexception string filename=,d:z,+filc. scparator+hcllo. txt"file f=new file(filename);randomaccessfile demo二new randomaccessf訂e(f, rw); demo. writebytes(asdsad); demo, wri tetnt(12);demo. writcboolcan(true);
17、demo. writecharc a");demo. writefloat (1. 21f); demo. writedouble(12. 123);demo, close();如果你此時打開hello。txt查看的話,會發現那是亂碼。字節流【向文件中寫入字符吊】/*字節流*向文件中寫入字符串* */import java. io.class hellopublic static void main(string args) throws ioexception string filename二d:"+file. separator+hello. 1x1" fil
18、e f=new file(filename);outputstream out =new fileoutputstream(f); string str=,z你好;byte b=str. get bytes ();out. wri te (b);out. closeo ;查看hello, txt會看到“你好”當然也可以一個字節一個字節的寫。/*字節流*向文件中一個字節一個字節的寫入字符串* */import java. io. *;class hellopublic static void main(string args) throws ioexception string filename
19、=d:+file. separator+hello. txt" file f=new file(filename);outputstream out =new fileoutputstream(f);string str二你好;bytc b=str. gctbytcs ();for (int i = 0; i < b.length; i+) out. write(bi);out. closeo ;結果還是:“你好” 向文件小追加新內容:/*字節流*向文件中追加新內容:* */import java. io. *;class hcllopublic static void mai
20、n(string args) throws loexception string filename=z'd:z,+file. separator+/zhello. txt" file f二new file(filename);outputstream out 二new fi1eoutputstream(f, true);string str=z,rollcrt;/string str二"rnrollert;可以換行 byte b=str. getbytes ();for (int i 二 0; i < b.1ength; i+) out. write(bi);
21、out. close ();【運行結果】:你好rollon【讀取文件內容】/*字節流*讀文件內容* */import javaio.*;class hellopublic static void main( str ing args) throws toexception string filename=,/d:z,+file separator+hello. txt" file f=ncw file(filename);inputstream in=new filelnputstreankf);byte b=new byte1024;in. read(b);in. close ()
22、;system out printin(new string(b);【運行結果】你好rollonrollen_但是這個例子讀取出來會有大量的空格,我們可以利用in.read(b);的返冋值來 設計程序。如下:/*字節流*讀文件內容* */import java. io. *;class hellopublic static void ni3in( str in g args) throws ioexccption string filename二"d:"+file separator+,zhello. txt"file f=new file(filename);i
23、nputstream in二new filelnputstream(f); byte b=new byte1024;int lcn二in. rcad(b);in. close ();system, out. printin (,z讀入長度為:+len); system, out. print in (new str in g(b, 0, len);【運行結果】:讀入長度為:18你好rollenrollen讀者觀察上面的例了可以看出,我們預先中請了一個指定大小的空間,但是有時 候這個空間可能太小,冇時候可能太大,我們需要準確的大小,這樣節省空間, 那么我們可以這樣干:/*字節流*讀文件內容,節省
24、空間* */import java. io. *;class hellopublic static void main(string args) throws toexception string filename=,d:z,+filc. scparator+hcllo. txt"file f二new file(filename);inputstream in二new filelnputstream(f); byte b=new byte(int)f. length();in. read(b); system, out. printin(文件長度為:z,+f. length(); i
25、n. closeo ;system out println(new string(b);文件長度為:18你好rollonrollen將上面的例了改為一個一個讀:/*字節流*讀文件內容,節省空間* */import java. io. *;class hellopublic static void main(string args) throws toexception string filename=,d:z,+filc. scparator+hcllo. txt"file f=new file(filename); inputstream in=new fi1elnputstrea
26、m(f); byte b 二 new byte (in t) f. le ngth(); for (int i 二 0; i < b.length; i+) bi二(byte) in. read();in. close (); system, out. print in (new str in g(b);輸出的結果和上而的一樣。細心的讀者可能會發現,上面的兒個例了都是在知道文件的內容多大,然后才展 開的,有時候我們不知道文件有多大,這種情況下,我們需耍判斷是否獨到文件 的末尾。/*字節流*讀文件* */import java. io. *;class hellopublic static
27、 void main(string args) tbrows toexception string filename=,d:z,+filc. scparator+hcllo. txt" file f=new file(filename);inputstream in二new filelnputstream(f); byte b二new byte1024;int count 二0;int tcmp=0;while(temp=in. reado) ! = (-l) bcount+二(byte)temp;in. close(); system, out. printin(new strin
28、g(b);【運行結果】你好rol 1 enrollcn_提醒一下,當獨到文件末尾的時候會返回-1 正常情況下是不會返回-1的字符流【向文件中寫入數據】現在我們使用字符流/*字符流*寫入數據* */import java. io. *;class hellopublic static void main(string args) throws ioexception string f i 1 ename=/zd: /z+fi 1 e. separator+/zhello. txt; file f=new file(filename);writer out 二new filewritcr(f);s
29、tring str二hello"out write (str); out. close ();當你打開hclloo txt的時候,會看到hello其實這個例子上z前的例子沒什么區別,只是你可以直接輸入字符串,而不需要 你將字符串轉化為字節數組。當你如果想問文件屮追加內容的吋候,可以使用將上面的聲明out的哪一行換 為:writer out =new?filcwriter(f, true);這樣,當你運行程序的時候,會發現文件內容變為:hellohello |果想在文件中換行的話,需要使用“rn”比如將 str 變為 string str二” rnhello” ;這樣文件追加的str的
30、內容就會換行了。從文件中讀內容:/*字符流*從文件中讀出內容* */import java, io.*;class hellopublic static void main(string args) throws loexception string f訂ename二d:+f訂e. separator+hello. txt; file f二new file(filename);cheir ch=new cheir 100;reader rcad=new filcrcadcr(f);int count=read. read(ch);read, close ();system, out. prin
31、tin(,z讀入的長度為+count); system. out. println(內容為"+new string(ch, 0, count);【運行結果】:讀入的長度為:17 內容為 hellohellohello當然最好采用循環讀取的方式,因為我們冇時候不知道文件到底冇多大。/*字符流*從文件中讀出內容* */import java io. *;class hellopublic static void main(string args) throws loexception string f訂ename二d:+f訂e. separator+,zhello. txt"f
32、ile f二new file(filename);chart ch=new char100;reader rcad=ncw filcreadcr(f);int temp=0;int count二0;while(temp=read. read() ! = (-l) ch count+ = (char) temp;read, close ();sys tem. out. printing 內容為"+new str in g(ch, 0, count);運行結果:內容為 hcllohcllohello關于字節流和字符流的區別實際上字節流在操作的時候本身是不會用到緩沖區的,是文件本身的直接操
33、作 的,但是字符流在操作的?時候卜后是會用到緩沖區的,是通過緩沖區來操作文 件的。讀者可以試著將上面的字節流和字符流的程序的最后一行關閉文件的代碼注釋 掉,然后運行程序看看。你就會發現使用字節流的話,文件中已經存在內容,但 是使用字符流的時候,文件中還是沒有內容的,這個時候就要刷新緩沖區。使用字節流好還是字符流好呢?答案是字節流。首先因為硬盤上的所有文件都是以字節的形式進行傳輸或者保存 的,包括圖片等內容。但是字符只是在內存中才會形成的,所以在開發中,字節 流使用廣泛。文件的復制其實dos下就冇一個文件復制功能,比如我們想把d盤下而的h e 1 1 ot x t文件復制到d盤下面的rollen
34、. txt文件中,那么我們就可以使用下面的命 令:copy d:hello. txt d:rollen. txt運行之后你會在d盤中看見hello, txt.,并口兩個文件的內容是一樣的,(這 是屁話)下面我們使用程序來復制文件吧。基本思路還是從一個文件中讀入內容,邊讀邊寫入另一個文件,就是這么簡單。、首先編寫下而的代碼:/*文件的復制* */import java io. *;class hellopublic static void main(string args) throws ioexception if (args, length!=2) system, out. printlnc
35、'命令行參數輸入有誤,請檢查"); systcm. exit ;file filel=new file (args0);file f訂e2=new f訂e(argsl);if (!filel. exists() system, out. println(/z被復制的文件不存在"); system. exit 仃);inputstream input二new filelnputstream(filel);outputstream output二new fileoutputstream(file2); if(input!=null)&&(output!=
36、null) int temp二0; while (temp= in put. read () !二(-1) output write(temp);input, close (); output, close ();然后在命令行下面javac hello, javajava hello d:hello. txt d:rollen. txt現在你就會在d盤看到rolleno txt 了,outputstreramwriter?d inputstreamreader 類整個10類屮除了字節流和字符流述包括字節和字符轉換流。outputstreramwriter將輸出的字符流轉化為字節流inputst
37、reamreader將輸入的字節流轉換為字符流但是不管如何操作,最后都是以字節的形式保存在文件中的。將字節輸出流轉化為字符輸出流/*將字節輸出流轉化為字符輸出流* */import java, io.*;class hellopublic static void main(string args) throws loexception string filename= /zd:z/+file. separator+/zhello. txt/z; file file二new file(filename);wri ter out 二 new outputst reamwr it er (new f
38、ileo utputst ream (file); out. write ("hello");out. close ();運行結果:文件屮內容為:hello 將字節輸入流變為字符輸入流/*將字節輸入流變為字符輸入流* */import java. io. *;class hellopublic static void main(string args) throws ioexception string filename= d:+f訂e. separator+hello. txt;file file二new file(filename);reader rcad=ncw in
39、putstrcamrcadcr(new filclnputstrcam(filc); char b二new char100;int len=read. read(b);system, out. print in (new str in g(b, 0, len); read, close();【運行結果】:hello前面列舉的輸岀輸入都是以文件進行的,現在我們以內容為輸出輸入目的地,使 用內存操作流by tcarray inputstrcam?主要將內容寫入內容bytearrayoutputstream?主要將內容從內存輸出使用內存操作流將一個大寫字母轉化為小寫字母/*使用內存操作流將一個大寫字
40、母轉化為小寫字母* */import java. io. *;class hellopublic static void m8in(string args) throws ioexception string str二rollenholt;bytcarreiy in putstrcam in put 二 newbytearraylnputstream(str getbytes ();bytearrayoutputstrearn output二new bytearrayoutputstream(); int temp二0;while(temp二input, read() !二-1) char c
41、h= (char)temp;output write(character. tolowercase(ch);string outstr二output. tostring(); in put. close ();output, close ();system, out. println(outstr);【運行結果】:rollenholt內容操作流一般使用來生成一些臨時信息采用的,這樣可以避免刪除的麻煩。 管道流管道流主要可以進行兩個線程z間的通信。pipedoutputstream?管道輸ill 流pipedtnputstream?管道輸入流驗證管道流/*驗證管道流* */import java
42、. io. *;/*消息發送類* */class send implements runnable private pipedoutputstream out=null;public send() out=new pipedoutputstream();public pipedoutputstream getout()return this.out;ijpublic void run() string message二hello , rollert;try out. wri te(message. etbytes ();catch (exception c) e. printstacktrac
43、e (); try out. close ();catch (exception e) c. printstacktracco ; /*接受消息類* */class recive implements runnableprivate piped!nputstream input二null;public recive()this. input=new pipedlnputstream(); public pipedlnputstream getlnput() return this. input;public void run() byte b=new byte1000;int len二0;tr
44、y len二this. input, read(b);catch (exception c) e. printstacktrace (); try in put. close ();catch (exception e) e. printstacktrace (); _system, out. printin(,z接受的內容為 +(new string(b, 0, len); /*測試類* */class hellopubl ic static void main(string args) tbrows toexception send send二new send ();recive reci
45、ve=new recive();try 管道連接send. getout () connect (recive. getlnput ();catch (exception e) e. printstacktrace ();new thread (scnd), start();new thread(recive). start();【運行結果】:接受的內容為?hcllo , rollon打印流/*使用printstream進行輸岀* */import java. io.class hello public static void main(string args) throws toexcept
46、ion printstream print 二 new printstream(new fi1eoutputstream(new f 訂 c(d:+ file, separator + "hello.txt");print, println(true);print, printin(rollen); print. close();【運行結果】:truerollen當然也可以格式化輸出/*使用printstream進行輸出*并進行格式化* */import java, io.*;class hello public static void main(string args)
47、throws loexception printstream print 二 new printstream(new fi1eoutputstream(new f 訂 e(d:+ file, separator + "hello.txt");string name=,zrollcrt;int age=20;print, printf (,z姓名:%s.年齡:%, age); print, close ();【運行結果】:姓名:rollen. ?年齡:20.使用outputstream向屏幕上輸出內容/*使用outputstrcam向屏幕上輸出內容* */impo
48、rt java. io. *; class hello public static void main(string args) throws ioexception outputstrcam out二system, out;try out. write (hello getbytes ();catch (exception e) e. printstacktrace ();try out. close ();catch (exception e) e. printstacktrace();【運行結果】:hello輸入輸出重定向import java. io. file;import java
49、. io.filenotfoundexception; import java. io.fileoutputstream;import java. io. printstream;/* 為 system, out. printin ()重定向輸出* */public class systemdeino public static void main(string args) /此刻直接輸出到屏幕system, out. println("hello");file file = new file(d:" + file.separator + "hello.
50、txt");system. setout(new printstream(newfileoutputstream(file);catch (filenotfoundexccption c)e. printstacktrace ();system, out. printin(,z這些內容在文件中才能看到哦! );【運行結果】:eclipse的控制臺輸出的是hello。然后當我們查看d盤下面的hello, txt文件 的時候,會在里面看到:這些內容在文件中才能看到哦!import java. io. file;import java. io. fi1emotfoundexception;
51、import java. io. filcoutputstream;import java. io. printstream;* system, err重定向這個例子也提示我們口j以使用這種方法保存錯誤信息* */public class systemerr public static void main(string args)file file 二 new f訂e(d: + file, separator + "hello.txt); system, err. printin(這些在控制臺輸出); try system. seterr(new printstream(newfil
52、eoutputstream(file);catch(filenotfoundexception e)e. printstacktrace();system, err. printlnc這些在文件中才能看到哦! “);【運行結果】:你會在eclipse的控制臺看到紅色的輸出:“這些在控制臺輸出”,然后在d 盤卜面的hello, txt中會看到:這些在文件中才能看到哦!import java io.file;import java. io. filelnputstream;import java io. f訂enotfoundexception;import java io. toexceptio
53、n;/* system, in 重定向* */public class systemin public static void main(string args) file file = new filec'd:" + file .separator + "hell o. txt"); if (!file. existso) return;else trysystem setln(new filelnputstream(file);catch(f訂enotfoundexception e)e. printstacktrace ();byte bytes 二
54、 new byte1024;int len = 0;try len = system, in. read (bytes);catch (loexception e) e. pri ntstacktrace ();system, out. println(,z讀入的內容為:"+ new string(bytes, 0, len);【運行結果】: 前提是我的d盤下面的hello, txt中的內容是:“這些文件中的內容哦!”,然 后運行程序,輸岀的結果為:讀入的內容為:這些文件屮的內容哦!bufferedreader 的小例子 注意:?bufferedreqder只能接受字符流的緩沖區,因為每一個中文需要占據兩 個字節,所以需要將system, in這個字節輸
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經權益所有人同意不得將文件中的內容挪作商業或盈利用途。
- 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 主播勞動合同樣本
- 麗水重型吊車租賃合同樣本
- 東呈酒店勞務合同樣本
- 離婚法律協議離婚程序二零二五年
- 二零二五版員工廉政廉潔自律手冊承諾書
- 2007購房合同標準文本
- 青藍工程培養計劃書
- 微商營銷方案三篇
- 二零二五版環境保護管理協議模板
- 辦公廠房無償出租協議
- 甘肅省衛生健康委公務員考試招聘112人往年題考
- 數字化賦能護理質量管理研究進展與價值共創視角
- 沖壓模具設計與制造工藝考試復習題庫(含答案)
- 2025牡丹江輔警考試題庫
- 2024年新高考廣西高考生物真題試卷及答案
- 2024-2025學年北師大版七年級數學下冊期中模擬卷
- 2025部編人教版小學二年級語文下冊全冊教案
- 電網工程設備材料信息參考價(2024年第四季度)
- 電子產品生產工藝流程手冊
- 預防艾滋病、梅毒、乙肝母嬰傳播實驗室檢測
- pep小學英語四年級下課文及翻譯
評論
0/150
提交評論