2014年4月22日 星期二

【File I / O 處理 08】位元組:OutputStream 類別


import java.io.*;
import java.util.Scanner;


public class FileIOOutputStream {

 public static void main(String[] args) {
  String fileName, fileDir;
  try{
   System.out.println("請輸入檔名: ");
   Scanner sn = new Scanner(System.in);
   fileDir = sn.next();
   
   FileOutputStream of = new FileOutputStream(fileDir);
   String str = "Hello World!";
   byte[] b = str.getBytes();
   for(int i=0; i < b.length; i++)
    of.write(b[i]);
   of.close(); 
  }catch (IOException e){
   System.out.println("輸入檔案路徑錯誤");
  }
  
 }

}
執行結果












新增檔案

沒有留言:

張貼留言