我尝试在将项目资源提取到本地/临时路径后执行* .exe文件。当我通过NetBeans运行代码时,它工作正常。当我为Standalone Jar构建它时会出现问题。简单地说,不运行,不提取资源而不执行它。
为了简洁,我省略了实例化。
public class MyClass {
public MyClass() {
}
public void extractExe() {
try {
// Get resource as stream
InputStream in = getClass().getResourceAsStream("/resource.exe");
// Set the output path for the stream
OutputStream out = new FileOutputStream("C:/path/to/resource.exe");
// Copy the resource to the path
IOUtils.copy(in, out);
// Close the streams
in.close();
out.close();
// Execute it !
Runtime.getRuntime().exec("cmd /c start C:/path/to/resource.exe");
} catch (FileNotFoundException ex) {
System.out.println(ex);
} catch (IOException ex) {
System.out.println(ex);
}
}
}
这就是我的pom.xml的样子,它只是加载依赖项,并构建一个包含其中库的jar:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.jeflopo</groupId>
<artifactId>Myclass</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
<type>jar</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<finalName>${project.artifactId}-standalone</finalName>
<archive>
<manifest>
<mainClass>com.jeflopo.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
它工作正常,没有给出错误当我在Netbeans中执行它或通过命令行执行:
java -cp myjar.jar com.jeflopo.Main
但是当我双击.jar
时,它不起作用我不是专家,有人可以帮我调试错误吗?
答案 0 :(得分:0)
我真的不知道自己做了什么才能让它再次发挥作用。但它现在正在工作。
我已经通过命令行执行了它,我已经运行了命令&#34; mvn package&#34;并且它仍然没有通过双击启动。
我只是去吃饭,当我回来的时候,我又试过了......现在它就开始了。
嗯... @Sajan Chandran建议显示清单文件,但我认为因为我没有使用 maven-jar-plugin 我没有清单文件。我只是使用 maven-assembly-plugin 将所有依赖项汇集到一个可分发的归档中。非常感谢。 请原谅我的语法,英语不是我的第一个语言......