Java IO流 之 FileOutputStream 寫入文件
阿新 • • 發佈:2018-06-26
AS OS catch pri int content except 數據 ati
http://www.verejava.com/?id=1699464804818
package com.io; import java.io.*; public class TestOutputStream { public static void main(String[] args) { OutputStream os=null; try { os=new FileOutputStream(new File("res/test.txt")); //向文件中寫入數據 String content="good morning"; byte[] data=content.getBytes(); os.write(data); } catch (Exception e) { e.printStackTrace(); } finally { try { os.close();//關閉輸出流 } catch (IOException e) { e.printStackTrace(); } } } }
http://www.verejava.com/?id=1699464804818
Java IO流 之 FileOutputStream 寫入文件