英文:
What are my options for packaging my Java Project?
问题
所以我正在开发我的第一个实际上能赚到一些钱的程序。它包括一个.jar文件,两个txt文件(用户可访问),几个批处理文件和一些图片。有没有将这些东西打包在一起,而不是将一堆松散的文件夹交给客户的选项?我是一名大学生,在课程中还没有讨论过这个……
英文:
So I am working on my first program that I'm actually making some money off of. It consists of a .jar, two txt files (user accessible), a few batch files, and some images. Are there any options for packaging these nicely together instead of passing a bunch of loose files in a folder off to my client? I'm a college student, and this hasn't been talked about yet...
答案1
得分: 1
你可以根据需要使用包和不同的文件夹来存放不同的类文件或额外的文件。尽量将相似的文件组织在一个文件夹中。使用 lib 文件夹来存放你的依赖项,使用 src 文件夹来存放所有的源代码。另外,你可以在你喜欢的代码编辑器中使用Java项目管理扩展。
作为参考,这是我的一个项目文件夹结构(我使用VS CODE进行编码)-
英文:
You can use packages and different folders for different class file or extra files as you wish. Try to organize the similar files in a group in a folder. use lib folder for keeping your dependencies and src folder for keeping all your source codes. Also you can use a java project manager extension in your desired code editor.
For reference here is one of my projects folder structure (I Use VS CODE for coding) -
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论