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.
大家好 stackoverflow :)
今天我遇到了一个问题,我需要一些帮助来解决。
我想从我的计算机中获取文件夹的内容,然后将该内容添加到 jar 文件中,替换该 jar 文件中已有的任何现有文件。我正在尝试从 Java 程序中执行此操作。
我已经编写了一个方法来提取 jar 文件的内容,但我想这对于我必须做的事情来说将是一种更快、更有效的方法。
对此的任何帮助将不胜感激。
您是否尝试过查看文档http://docs.oracle.com/javase/tutorial/deployment/jar/update.html?
如果您想从 Java 应用程序中执行此操作,您可以考虑 Runtime.getRuntime().exec("your command")
Runtime.getRuntime().exec("your command")