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.
我有一个包含大约 20 个 jar 文件的 ear 文件。现在这个 EAR 中有一个特定的 jar 文件,比如 jar 1,其中包含应用程序类文件。
现在我想要一个unix中的单行命令,它可以从EAR中存在的那个jar(在本例中为jar 1)中提取一个特定的类文件。
我找到了一种分两个阶段进行的方法:
找到你想要的文件:
jar tvf file.ear | grep file_you_want.abc
您将获得所需的文件及其路径。
提取它:
jar xvf file.ear path/to/file/file.abc