我在java web应用程序中使用opencv进行人脸检测的swing应用程序。我将其转换为jnlp文件并将其放入我的web应用程序的web文件夹中。但是当我在下载后运行它时,它会给出错误消息,它无法启动application.My jnlp文件如下:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<jnlp codebase="http://localhost:8084/detectionwebapp" href="launch.jnlp" spec="1.0+">
<information>
<title>FaceDetectionWebStart</title>
<vendor>admin</vendor>
<homepage href=""/>
<description>FaceDetectionWebStart</description>
<description kind="short">FaceDetectionWebStart</description>
<offline-allowed/>
</information>
<update check="background"/>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.6+"/>
<jar href="FaceDetectionWebStart.jar" main="true"/>
<jar href="lib/javacpp.jar"/>
<jar href="lib/javacv-windows-x86.jar"/>
<jar href="lib/javacv-windows-x86_64.jar"/>
<jar href="lib/javacv.jar"/>
</resources>
<application-desc main-class="facedetectionwebstart.FaceDetectionWebStart">
</application-desc>
</jnlp>
swing应用程序使用xml文件,opencv jars和图像。我把它放在web文件夹中。我错过了什么?请帮忙
我的网络文件夹结构如下: