Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
NetBeans で大規模なシミュレーションを実行したところ、出力ウィンドウからの出力をファイルにコピーする前にコンピューターがクラッシュしました。
この出力が一時ファイルに保存されているかどうか、または永久に失われているかどうかは誰にもわかりませんか?
そして、それはどこに保管できますか?
ご助力ありがとうございます
System.outのことですか?
次のようにします。
PrintStream out = new PrintStream(new FileOutputStream("output.txt")); System.setOut(out);