java 使用FileInputStream,FileReader,BufferedStream的例子

來源:互聯網
上載者:User

//在當前檔案夾下建立一個文字檔(使用Windows 記事本程式)<br />//在檔案中輸入幾行文本;<br />//使用檔案輸入資料流類FileInputStream和FileReader類,<br />//讀取上邊的文字檔中的內容,並輸出到螢幕上。<br />import java.util.Arrays;<br />import java.io.*;<br />class Test<br />{<br />public static void main(String []args) throws Exception<br />{<br />File myFile=new File("temp.txt");<br />if(!myFile.exists())<br />{<br />System.out.println("can't fine that file"+myFile.getName());<br />}<br />//<br />//使用BufferedReader類讀入<br />//<br />//FileReader fis=new FileReader(myFile);<br />//BufferedReader br=new BufferedReader(fis);<br />//String line;<br />//while((line=br.readLine())!=null)<br />//{<br />//System.out.println(line);<br />//}<br />//br.close();<br />//fis.close();</p><p>//<br />//使用fileInputStream讀入<br />//FileInputStream fis=new FileInputStream(myFile);<br />//byte[] b=new byte[(int)myFile.length()];<br />//fis.read(b);<br />//String str=new String(b);<br />//System.out.print(str);<br />//fis.close();<br />//<br />//使用FileReader<br />//<br />FileReader fr=new FileReader(myFile);<br />char[] contents=new char[(int)myFile.length()];<br />fr.read(contents,0,(int)myFile.length()-1);<br />String result=new String(contents);<br />System.out.println(result);<br />fr.close();<br />}<br />};

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.