以下是要翻译的内容: 我的 Java 项目打包的选择有哪些?

huangapple go评论68阅读模式
英文:

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进行编码)-

以下是要翻译的内容:
我的 Java 项目打包的选择有哪些?

英文:

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) -

以下是要翻译的内容:
我的 Java 项目打包的选择有哪些?

huangapple
  • 本文由 发表于 2020年9月13日 13:21:36
  • 转载请务必保留本文链接:https://go.coder-hub.com/63867453.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定