我的編碼有什麼問題? 我試圖創建一個文件名&打印輸出文本文件 包實用12;我無法創建文件
import java.io.FileNotFoundException;
import java.io.PrintWriter;
import java.util.Scanner;
public class q4 {
public static void main (String []args) throws FileNotFoundException{
System.out.println("please input file name");
String name;
//take file name
Scanner in;
in = new Scanner(System.in);
name = in.nextLine();
PrintWriter out = new PrintWriter(name);
// create textfile
out.println("Hello! My first program in File");
// write the text
out.close();
//close the file
}
}
什麼問題?你是否收到錯誤或不是預期的結果?請詳細說明。 –
您的代碼完全正常。請確認您在正確的位置查找文件。 – Manmay
這個問題不是很好,對問題沒有足夠的解釋。 –