package com.hp.io;
import java.io.FileOutputStream;
import java.io.IOException;
public class FileOutputStreamTest{
public static void main(String []args){
FileOutputStream fos=null; //文件輸出流
try{
String str="java從入門到放棄";
byte [] words =str.getBytes(); //創建一個中轉存放字節
fos =new FileOutputStream("f:\\入門.txt"); //可以選擇已有的也可以隨便寫一個 會自動創建一個文件
fos.write(words,0,words.length); // 開始寫入 words中的數據 數據大小從0到words的長度,注意這裡不是求最大值 不是words.length-1
System.out.println("文件已更新");
}catch(IOException e){
System.out.print("創建文件時出錯");
}finally{
try{
if(fos!=null)
fos.close();
}catch(IOException e){
e.printStackTrace();
}
}
}
}