大家好,我有以下问题。
我正在使用Webcam Capture API来捕获图片。问题是,当我在Netbeans中编译一切时,一切都很好。但是如果我将所有内容编译到一个jar文件中,然后再次运行它,除了网络摄像头功能之外,所有内容都可以正常工作。你们有谁知道问题出在哪里吗?因为我已经不知道了。
如果我从页面http://www.java2s.com/Code/Jar/w/Downloadwebcamcapture033jar.htm下载示例jar文件我也不能启动主jar文件。
我已经尝试更改JDK版本,但是没有成功。
谢谢你的帮助
您指向的链接只是一个库jar,没有main,没有要执行的示例。
有很多方法可以编译成一个jar文件,如果不包含所有必要的依赖关系,很容易创建一个无法工作的jar文件。
创建一个适合我的项目,创建一个目录webcamtest。
保存为pom.xml
<?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.github.wshackle</groupId>
<artifactId>webcamtest</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.github.sarxos</groupId>
<artifactId>webcam-capture</artifactId>
<version>0.3.10</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<main.class>Main</main.class>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.5</version>
<configuration>
<archive>
<manifest>
<mainClass>${main.class}</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
创建子目录srcmainjava
并保存为Main.java
import com.github.sarxos.webcam.Webcam;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
public class Main {
public static void main(String[] args) throws IOException {
Webcam webcam = Webcam.getDefault();
webcam.open();
File f = new File("webcam_snap.png");
ImageIO.write(webcam.getImage(), "PNG",f);
System.out.println("Saved image "+f.getAbsolutePath());
}
}
在Netbeans中将该目录作为项目打开并构建。
运行单个jar文件:
java -jar target/webcamtest-1.0-SNAPSHOT-jar-with-dependencies.jar