這篇文章主要介紹了Java字串寫入檔案三種方式的實現的相關資料,需要的朋友可以參考下
Java字串寫入檔案三種方式的實作
1、使用FileWriter
##
String str="hello world!"; FileWriter writer; try { writer = new FileWriter("E:/token.txt"); writer.write(str); writer.flush(); writer.close(); } catch (IOException e) { e.printStackTrace(); }
2、使用FileOutPutStream
File txt=new File("E:/log1.txt"); if(!txt.exists()){ txt.createNewFile(); } byte bytes[]=new byte[512]; bytes=str.getBytes(); int b=bytes.length; //是字节的长度,不是字符串的长度 FileOutputStream fos=new FileOutputStream(txt); fos.write(bytes,0,b); fos.write(bytes); fos.close();
#3、使用FileOutPutStream追加寫入檔案
FileOutputStream fos = new FileOutputStream("E:/log.txt",true); //true表示在文件末尾追加 fos.write(log.getBytes()); fos.close();
以上是分享三種Java字串寫入檔案的實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!