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.
我有一个 Ruby 脚本,我想把它变成一个 Jar 文件。
使用 JRuby,我已经编译了我的脚本,现在有了一个*.class文件。
*.class
我现在如何将 my*.class转换为*.jar文件以便可以通过 JVM 执行?
*.jar
谢谢。
编辑:“主类:HelloWorld
"
(基本上 manifest.mf 是 Main-Class: HelloWorld 后跟两个新行。)
这里解释
jar cf jar-file input-file(s)
例如:
jar cf C:\hi.jar C:\classes\hi.class