Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以不使用 jar -cvf 选项将类文件编译为 jar 文件。
我想通过源代码编译jar文件。
不能有人给我看一些示例代码吗
JAR 就是一个 ZIP 文件。
虽然我不是你想要达到的目标,但我可以给你以下提示:
编译:javac Hello.java 创建 JAR:zip Hello.jar Hello.class
如果你想要一个包含你的源代码的 JAR,你也可以运行上面的命令: zip Hello.jar Hello.java
另请注意,如果您使用诸如 maven 之类的构建工具,则有各种插件可用于诸如“程序集”(用于 maven)之类的任务。