如何构建一个包含所有必需文件和文件夹的 java 项目?
我创建了一个简单的应用程序,它将读取文件夹内保存的所有文件和文件夹。每当我构建项目时,我只获得 jar 文件,但必须创建保存文件和文件夹的文件夹。这应该是这样的还是我必须编写一些代码,这将在最终构建时创建文件夹。
I created a simple application which will read all the files and folders kepts inside a folder. Whenever I build the project, I only get the jar file but the folder where the file and folders are kept have to be created. Is this supposed to be like this or I have to code something, which will create the folder upon the final build.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编译只给你可执行文件(即*.jar)。如果您需要其他东西来使您的应用程序正常工作 - 您必须这样做(无论是否以编程方式)。
Compilation gives you only executable file (i.e. *.jar). If you need something else to make you application works - you must do it (programmatically or not).