代码编译并且不会抛出任何错误。但是,文本不会打印到我的.java文件。我尝试打印到.txt文件,但这也无效。我尝试打印到的文件与我的Main类位于同一目录中。我知道PrintWriter无法正常工作的两个最常见原因是没有关闭PrintWriter而没有正确的路径。我不认为这里有任何问题,但我可能会忽视某些事情。任何帮助深表感谢!
这是我的代码,其中遗漏了无关的位:
public class Main {
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
Gui gui = new Gui();
gui.createAndShowGUI();
gui.setVisible(true);
}
});
//System.out.println(new File(".").getAbsolutePath());
File file = new File("C:\\Users\\Me\\Desktop\\Basket.java");
PrintWriter pw = null;
try {
pw = new PrintWriter(file);
pw.println("hello there");
pw.flush();// tried with and without flushing;
// System.out.println(pw.checkError());
} catch (FileNotFoundException e) {
e.printStackTrace();
} finally {
if (pw != null) {
pw.close();
}
}
}
}
答案 0 :(得分:0)
问题是我需要在Eclipse中手动刷新项目目录视图。捷径:F5。