将jar的一部分提取到路径中

时间:2010-10-07 12:37:32

标签: java shell jar zip aix

我正在使用follwing命令,我的目的是从中提取DYEDistinctAppServer.topology discovery1-full-8.1.0-07-10-2010_1055.jar at data / product / template-topologies / DYEDistinctAppServer.topology path。

命令:

jar -xf discovery1-full-8.1.0-07-10-2010_1055.jar -C data/product/template-topologies/DYEDistinctAppServer.topology

它没有提取文件,而是提示我错误地使用命令并将所有各种选项转出帮助。

是否存在语法错误,因为它在使用部分中显示。 我正在使用AIX OS。

感谢。

1 个答案:

答案 0 :(得分:0)

选项-C用于设置jar应运行的目录,而不是 JAR文件中的路径。尝试:

jar -xf discovery1-full-8.1.0-07-10-2010_1055.jar data/product/template-topologies/DYEDistinctAppServer.topology