您好,登錄后才能下訂單哦!
本篇文章為大家展示了如何在Java中創(chuàng)建和讀寫(xiě)File文件,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
1.創(chuàng)建一個(gè)文件
@Test public void test6() throws IOException { File file1 = new File("C:\\IDEA\\h2.txt"); if(!file1.exists()){//文件不存在 file1.createNewFile(); System.out.println("創(chuàng)建成功"); }else{//文件存在 file1.delete(); System.out.println("刪除成功"); } }
輸出
file.mkdir,不會(huì)幫你創(chuàng)建上層目錄 file.mkdirs,會(huì)幫你創(chuàng)建上層目錄
@Test public void test7(){ //創(chuàng)建文件夾,mkdir,不會(huì)幫你創(chuàng)建上層目錄 File file1 = new File("c:\\IDEA\\io2"); boolean mkdir =file1.mkdir(); if(mkdir){ System.out.println("創(chuàng)建成功1"); } //創(chuàng)建文件夾,mkdirs,會(huì)幫你創(chuàng)建上層目錄 File file2 = new File("c:\\IDEA\\io1\\io3"); boolean mkdirs =file2.mkdirs(); if(mkdirs){ System.out.println("創(chuàng)建成功2"); } }
輸出
@Test public void test8(){ //刪除文件或空文件夾 File file1 = new File("c:\\IDEA\\h2.txt"); file1.delete(); }
//遞歸函數(shù)刪除所有文件 private boolean deletedir(File dir){ if (dir.isDirectory()) { File[] files = dir.listFiles(); //遞歸刪除目錄中的子目錄下 for (File f:files) { boolean success = deletedir(f); if (!success) { return false; } } } // 目錄此時(shí)為空,可以刪除 return dir.delete(); } @Test public void test8() { File dir = new File("c:\\IDEA"); System.out.println(deletedir(dir)); }
1.對(duì)于文本文件(.txt,.java,.c,.cpp),使用字符流處理
2.對(duì)于非文本文件(.jpg,.mp3,.mp4,.avi,.doc,.ppt)使用字節(jié)流處理
@Test public void test9() { FileReader fr = null;//自動(dòng)補(bǔ)的 try { //1.實(shí)例化File類(lèi)的對(duì)象,指明要操作的文件 File file1 = new File("c:\\IDEA\\hello.txt"); file1.createNewFile();//要拋出異常 //2.提供具體的流 fr = new FileReader(file1); //3.數(shù)據(jù)的讀入 //read():返回讀入的一個(gè)字符,如果達(dá)到文件末尾,返回-1 int data = fr.read(); while(data!=-1){ System.out.print((char)data); data = fr.read(); } } catch (IOException e) { e.printStackTrace(); }finally { try { //4.流的關(guān)閉操作 if(fr!=null)//防止沒(méi)有實(shí)例化成功,避免空指針異常 fr.close(); } catch (IOException e) { e.printStackTrace(); } }
要記得關(guān)閉,因?yàn)槲锢磉B接JVM垃圾回收機(jī)制不會(huì)自動(dòng)回收,要手動(dòng)關(guān)閉。
@Test public void test1() { FileReader fr = null; try { //1.File類(lèi)的實(shí)例化 File file = new File("hello.txt"); //2.FileReader流的實(shí)例化 fr = new FileReader(file); //3.讀入的操作 //read(char[] cbuf):返回每次讀入cbuf數(shù)組中的字符的個(gè)數(shù)。如果達(dá)到文件末尾,返回-1 char[] cbuf = new char[5]; int len; while ((len = fr.read(cbuf)) != -1) { //錯(cuò)誤的寫(xiě)法 //for(int i=0;i<cbuf.length;i++{ // System.out.println(cbuf[i]); //} //正確的寫(xiě)法 for (int i = 0; i < len; i++) { System.out.println(cbuf[i]); } } } catch (IOException e) { e.printStackTrace(); } finally { if (fr != null) try { //4.資源的關(guān)閉 fr.close(); } catch (IOException e) { e.printStackTrace(); } } }
@Test public void test2() throws IOException{ //File對(duì)應(yīng)的硬盤(pán)中的文件 // 如果不存在,在輸出的過(guò)程中,會(huì)自動(dòng)創(chuàng)建此文件 //1.提供File類(lèi)的對(duì)象,指明寫(xiě)出到的文件 FileWriter fw = null; try { File file = new File("hello.txt"); //2.提供FileWriter的對(duì)象,用于數(shù)據(jù)的寫(xiě)出 //FileWriter(file,append)第二個(gè)參數(shù),append是true則在后面添加,是false就覆蓋 fw = new FileWriter(file,true); //3.寫(xiě)出的操作 fw.write("I have a dream!"); fw.write("you need have a dream"); } catch (IOException e) { e.printStackTrace(); } finally { try { if(fw!=null) //4.流資源的關(guān)閉 fw.close(); } catch (IOException e) { e.printStackTrace(); } } }
@Test public void test3(){ FileReader fr = null; FileWriter fw = null; try { // 1.創(chuàng)建File類(lèi)的對(duì)象,指明讀入和寫(xiě)出的文件 File src = new File("hello.txt"); File des = new File("hello1.txt"); // 2.創(chuàng)建輸入輸出流的對(duì)象 fr = new FileReader(src); fw = new FileWriter(des,true);//不覆蓋 // 3.數(shù)據(jù)的讀入和寫(xiě)出操作 char[] cbuf = new char[5]; int len; while((len = fr.read(cbuf))!=-1){ //每次寫(xiě)出len個(gè)字符 fw.write(cbuf,0,len);//從cbuf的0號(hào)位開(kāi)始寫(xiě)入len個(gè)字符 } } catch (IOException e) { e.printStackTrace(); } finally { try { // 4.關(guān)閉流資源1 fw.close(); } catch (IOException e) { e.printStackTrace(); } try { // 4.關(guān)閉流資源2 fr.close(); } catch (IOException e) { e.printStackTrace(); } } }
@Test public void test4(){ FileInputStream fis=null; FileOutputStream fos=null; try { //1.造文件 File src = new File("b.jpg"); File des = new File("c.jpg"); //2.造流 fis = new FileInputStream(src); fos = new FileOutputStream(des); //3.讀數(shù)據(jù),存數(shù)據(jù) byte[] buffer = new byte[5]; int len;//記錄每次讀取的字節(jié)的個(gè)數(shù) while((len = fis.read(buffer))!=-1){ fos.write(buffer,0,len); } } catch (IOException e) { e.printStackTrace(); } finally { if(fos!=null) { try { //4.關(guān)閉資源 fos.close(); } catch (IOException e) { e.printStackTrace(); } } if(fis!=null) { try { //4.關(guān)閉資源 fis.close(); } catch (IOException e) { e.printStackTrace(); } } } }
@Test public void test5(){ BufferedInputStream bis = null; BufferedOutputStream bos = null; try { //1.造文件 File src = new File("b.jpg"); File des = new File("d.jpg"); //2.造流 //2.1造節(jié)點(diǎn)流 FileInputStream fis = new FileInputStream(src); FileOutputStream fos = new FileOutputStream(des); //2.2造緩沖流 bis = new BufferedInputStream(fis); bos = new BufferedOutputStream(fos); //3.復(fù)制的細(xì)節(jié):讀取,寫(xiě)入 byte[] buffer =new byte[10]; int len; while((len=bis.read(buffer))!=-1){ bos.write(buffer,0,len); } } catch (IOException e) { e.printStackTrace(); } finally { //4.資源關(guān)閉 //要求,先關(guān)閉外層的流,再關(guān)閉內(nèi)層的流 if(bos!=null){ try { bos.close(); } catch (IOException e) { e.printStackTrace(); } } if(bis!=null){ try { bis.close(); } catch (IOException e) { e.printStackTrace(); } } //說(shuō)明:關(guān)閉外層流的同時(shí),內(nèi)層自動(dòng)關(guān)閉,所以外層關(guān)閉可以省略 //fos.close(); //fis.close(); } }
用緩沖流快了很多
1. 簡(jiǎn)單,只需理解基本的概念,就可以編寫(xiě)適合于各種情況的應(yīng)用程序;2. 面向?qū)ο螅?. 分布性,Java是面向網(wǎng)絡(luò)的語(yǔ)言;4. 魯棒性,java提供自動(dòng)垃圾收集來(lái)進(jìn)行內(nèi)存管理,防止程序員在管理內(nèi)存時(shí)容易產(chǎn)生的錯(cuò)誤。;5. 安全性,用于網(wǎng)絡(luò)、分布環(huán)境下的Java必須防止病毒的入侵。6. 體系結(jié)構(gòu)中立,只要安裝了Java運(yùn)行時(shí)系統(tǒng),就可在任意處理器上運(yùn)行。7. 可移植性,Java可以方便地移植到網(wǎng)絡(luò)上的不同機(jī)器。8.解釋執(zhí)行,Java解釋器直接對(duì)Java字節(jié)碼進(jìn)行解釋執(zhí)行。
上述內(nèi)容就是如何在Java中創(chuàng)建和讀寫(xiě)File文件,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(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)容。