我的java项目只有 PrintWriter 类
public class Main {
public static void main(String[] args) throws FileNotFoundException, UnsupportedEncodingException {
PrintWriter writer = new PrintWriter("F:\\the-file-name.txt", "UTF-8");
writer.println("The first line");
writer.println("The second line");
writer.close();
}
}
每当我在IntelliJ IDEA 15.0.3中运行此脚本时,它都会在F:\ directory.Fine中创建一个文件。
但是如果通过Jar file Create Link
在IntelliJ中构建.jar文件。它创建.jar文件但单击它不会在F:\ dir中创建文本文件。 我已经尝试通过Maven构建它但不在F:\中创建文本文件。我无法弄清楚为什么?请帮帮我。