これは私が見つけたものですが、このコードでは、入力した行を読み取りますが、それは望ましくありません
私は Knight's Tour というプログラムを実行しており、コマンド プロンプトで出力を取得しています。コマンド プロンプトから行を読み取り、knight.txt という出力ファイルに保存するだけです。誰でも私を助けることができますか?ありがとう。
try
{
//create a buffered reader that connects to the console, we use it so we can read lines
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
//read a line from the console
String lineFromInput = in.readLine();
//create an print writer for writing to a file
PrintWriter out = new PrintWriter(new FileWriter("output.txt"));
//output to the file a line
out.println(lineFromInput);
//close the file (VERY IMPORTANT!)
out.close();
}
catch(IOException e)
{
System.out.println("Error during reading/writing");
}