如何在源包文件夹子文件夹(源包-> 发票)中创建 txt 文件

How to create txt file in source package folder sub folder ( source package -> invoice)

我需要在发票文件夹中创建一个 .txt 文件。我正在使用 Windows 10。我该怎么做?我试过:

File myObj = new File("\invoice\filename.txt");

File myObj = new File("/invoice/filename.txt");

但是没有用。感谢您的支持。

问题是我没有添加以下几行:

objFile.createNewFile();
System.getProperty("user.dir") 

正如 Jens 所说,不要使用项目源文件夹来编写文件。 在独立应用程序 运行 时,可能没有文件夹 invoice, 而且您可能会冒着将垃圾文件编译到应用程序 jar 中的风险。

用户的主目录是 System.getProperty("user.home") 并从那里开始工作。这是用户特定文件的适当目录树。