- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
大家好!我在 WorldWind 库(它是 NASA 库)方面遇到了一些问题。我在 JetBrains Idea 14 中使用 Java 8 编写应用程序。在 Idea 中,我可以成功编译并运行我的应用程序,但是当我尝试使用 Maven 创建 jar 并运行我的 jar 时 - 我有一个大的堆栈跟踪,但有异常。这里是堆栈跟踪:
Java HotSpot(TM) 64-Bit Server VM warning: You have loaded library /tmp/jogamp_0000/file_cache/jln2853478832317459843/jln6471099643623499225/libgluegen-rt.so which might have disabled stack guard. The VM will try to fix the stack guard now.
It's highly recommended that you fix the library with 'execstack -c <libfile>', or link it with '-z noexecstack'.
Exception in Application constructor
13:18:52.415 [main] ERROR e.p.a.geotarget.GeoTargetApplication - java.lang.RuntimeException: Unable to construct Application instance: class myapp.GeoTargetApplication
at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:907)
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$152(LauncherImpl.java:182)
at com.sun.javafx.application.LauncherImpl$$Lambda$55/1556956098.run(Unknown Source)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$158(LauncherImpl.java:819)
at com.sun.javafx.application.LauncherImpl$$Lambda$56/793261514.run(Unknown Source)
at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$172(PlatformImpl.java:326)
at com.sun.javafx.application.PlatformImpl$$Lambda$51/1766822961.run(Unknown Source)
at com.sun.javafx.application.PlatformImpl.lambda$null$170(PlatformImpl.java:295)
at com.sun.javafx.application.PlatformImpl$$Lambda$53/1889656903.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.javafx.application.PlatformImpl.lambda$runLater$171(PlatformImpl.java:294)
at com.sun.javafx.application.PlatformImpl$$Lambda$52/1496724653.run(Unknown Source)
at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
at com.sun.glass.ui.gtk.GtkApplication.lambda$null$48(GtkApplication.java:139)
at com.sun.glass.ui.gtk.GtkApplication$$Lambda$41/1364335809.run(Unknown Source)
... 1 more
Caused by: myapp.GeoTargetException: java.util.concurrent.ExecutionException: java.lang.UnsatisfiedLinkError: /tmp/jogamp_0000/file_cache/jln2853478832317459843/jln6471099643623499225/libgluegen-rt.so: /tmp/jogamp_0000/file_cache/jln2853478832317459843/jln6471099643623499225/libgluegen-rt.so: неправильный класс ELF: ELFCLASS32 (Possible cause: architecture word width mismatch)
at myapp.ui.controls.WorldWindNode.<init>(WorldWindNode.java:40)
at myapp.GeoTargetApplication.<init>(GeoTargetApplication.java:53)
... 18 more
Caused by: java.util.concurrent.ExecutionException: java.lang.UnsatisfiedLinkError: /tmp/jogamp_0000/file_cache/jln2853478832317459843/jln6471099643623499225/libgluegen-rt.so: /tmp/jogamp_0000/file_cache/jln2853478832317459843/jln6471099643623499225/libgluegen-rt.so: неправильный класс ELF: ELFCLASS32 (Possible cause: architecture word width mismatch)
at java.util.concurrent.FutureTask.report(FutureTask.java:122)
at java.util.concurrent.FutureTask.get(FutureTask.java:192)
at myapp.ui.controls.WorldWindNode.<init>(WorldWindNode.java:36)
... 19 more
Caused by: java.lang.UnsatisfiedLinkError: /tmp/jogamp_0000/file_cache/jln2853478832317459843/jln6471099643623499225/libgluegen-rt.so: /tmp/jogamp_0000/file_cache/jln2853478832317459843/jln6471099643623499225/libgluegen-rt.so: неправильный класс ELF: ELFCLASS32 (Possible cause: architecture word width mismatch)
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1937)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1822)
at java.lang.Runtime.load0(Runtime.java:809)
at java.lang.System.load(System.java:1086)
at com.jogamp.common.jvm.JNILibLoaderBase.loadLibraryInternal(JNILibLoaderBase.java:575)
at com.jogamp.common.jvm.JNILibLoaderBase.access$000(JNILibLoaderBase.java:64)
at com.jogamp.common.jvm.JNILibLoaderBase$DefaultAction.loadLibrary(JNILibLoaderBase.java:96)
at com.jogamp.common.jvm.JNILibLoaderBase.loadLibrary(JNILibLoaderBase.java:459)
at com.jogamp.common.os.DynamicLibraryBundle$GlueJNILibLoader.loadLibrary(DynamicLibraryBundle.java:388)
at com.jogamp.common.os.Platform$1.run(Platform.java:209)
at java.security.AccessController.doPrivileged(Native Method)
at com.jogamp.common.os.Platform.<clinit>(Platform.java:179)
at javax.media.opengl.GLProfile.<clinit>(GLProfile.java:120)
at gov.nasa.worldwind.Configuration.getMaxCompatibleGLProfile(Unknown Source)
at gov.nasa.worldwind.Configuration.getRequiredGLCapabilities(Unknown Source)
at gov.nasa.worldwind.awt.WorldWindowGLJPanel.<init>(Unknown Source)
at myapp.ui.controls.WorldWindNode.lambda$new$12(WorldWindNode.java:25)
at myapp.ui.controls.WorldWindNode$$Lambda$80/619798096.call(Unknown Source)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:749)
at java.awt.EventQueue.access$500(EventQueue.java:97)
at java.awt.EventQueue$3.run(EventQueue.java:702)
at java.awt.EventQueue$3.run(EventQueue.java:696)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:719)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
我不明白为什么在 Idea ide 中我可以运行应用程序并且一切都很棒,但我无法从 jar 运行它。我在 Maven 中使用插件创建了 jar:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<archive>
<manifest>
<mainClass>myapp.mainClass</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.igor-petruk.protobuf</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.6.5</version>
<executions>
<execution>
<configuration>
<outputDirectory>src/main/java</outputDirectory>
<cleanOutputFolder>false</cleanOutputFolder>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
感谢您的回答和帮助!理想情况下它应该可以在 Windows 和 Linux 上运行:)
最佳答案
通过分析异常中的以下几行,当您拥有 32 位库并且您尝试将其加载到 64 位进程中时,它看起来像是平台依赖性问题。
... 1 more
Caused by: myapp.GeoTargetException: java.util.concurrent.ExecutionException: java.lang.UnsatisfiedLinkError: /tmp/jogamp_0000/file_cache/jln2853478832317459843/jln6471099643623499225/libgluegen-rt.so: /tmp/jogamp_0000/file_cache/jln2853478832317459843/jln6471099643623499225/libgluegen-rt.so: неправильный класс ELF: ELFCLASS32 (Possible cause: architecture word width mismatch)
at myapp.ui.controls.WorldWindNode.<init>(WorldWindNode.java:40)
at myapp.GeoTargetApplication.<init>(GeoTargetApplication.java:53)
... 18 more
Caused by: java.util.concurrent.ExecutionException: java.lang.UnsatisfiedLinkError: /tmp/jogamp_0000/file_cache/jln2853478832317459843/jln6471099643623499225/libgluegen-rt.so: /tmp/jogamp_0000/file_cache/jln2853478832317459843/jln6471099643623499225/libgluegen-rt.so: неправильный класс ELF: ELFCLASS32 (Possible cause: architecture word width mismatch)
at java.util.concurrent.FutureTask.report(FutureTask.java:122)
以下 SO 文件存在 jogl 插件问题。
/tmp/jogamp_0000/file_cache/jln2853478832317459843/jln6471099643623499225/libgluegen-rt.so
解决方案:尝试以下取自 Source 的步骤
Running under 64-bit Linux
Without installing the AMD64 version of JOGL you will likely see errors like Exception in thread "main" java.lang.UnsatisfiedLinkError: no gluegen-rt in java.library.path or Exception in thread "main" java.lang.UnsatisfiedLinkError: ~/wwj/libgluegen-rt.so: ~/wwj/libgluegen-rt.so: wrong ELF class: ELFCLASS32
To get it working:
Download the amd64 version of JOGL http://download.java.net/media/jogl/www/
Unzip the downloaded file and copy the content of the lib directory to your WWJ directory (e.g. cp jjogl-1.1.1-pre-20070511-linux-amd64/lib/* /path_to_WWJ/)
Edit run-demo.bash and replace the last line in the file with:
java -Xmx512m -Dsun.java2d.noddraw=true -Djava.library.path=. -classpath ./src:./classes:./
worldwind.jar:./jogl.jar:./gluegen-rt.jar $1
(Note: the only change is the addition of -Djava.library.path=.)
您还可以查看link有类似问题。
关于java - 带有 WorldWind 库的 Jar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29208057/
我在 WorldWindowGLJPanel 的图层列表中添加了两个图层。其中一个是包含形状的 RenderableLayer,另一个是包含光栅图像的 BasicTiledImageLayer。 (一
有没有办法将图像放入 WorldWind 中的海拔高度?我可以使用Surface Image将图像放置在地球上 - 但我希望将其放置在地形上方的给定高度处,但我在 API 中没有找到它。 最佳答案 您
我在 WorldWind 的 Sphere 中看到了看似矛盾的行为-线相交逻辑。我创建了一个 Sphere 和 Line,它们相交但随后交集返回 null(扫描代码以获取评论://*** 这就是它变得
在 NASA WorldWind Java 中,我使用 PointPlacemark 来表示图像,因为无论缩放级别如何,它都保持相同的大小。问题是我想在 Point Placemark 上设置航向,即
我正在经历这个tutorial 每当我的鼠标悬停在用这个 code 创建的立方体上时(下面是我的版本),大气层和星星消失了。 正常情况下是这样的: 这是我将鼠标悬停在立方体上时的样子(看看大气层):
我想将 WorldWindowGLJPanel 放入 Pane 中,并且希望使其可调整大小,但我不能,即使我调用 resize 或 setSize 方法。 这是我正在做的事情: wwd = new W
我想创建一个应用程序,允许用户输入经度和纬度,然后将其显示在 map 上。我遇到过WorldWind但我以前从未听说过。 要创建这样的应用程序,我最好使用 WorldWind 或 OpenStreet
我想在地球上画一 strip 有高程表示的线,如下所示: 我知道我可以用折线来表示一条线,但是如何填充线下方的空间? 最佳答案 您可以使用路径来画线。 setOutlineMaterial 将绘制一个
我正在尝试在 NASA Worldwind for Java 中实现我自己的杂波过滤器,它导致了一个奇怪的问题 - 杂波过滤器还没有做太多事情,但当我通过时,我将使用它来移动东西。 “闪烁”问题。每当
当我点击地球时,我在获取位置(纬度/经度)时遇到了问题。 SO(和其他网站)上的任何地方都建议使用 getCurrentPosition 方法。 不幸的是,这会返回包含单击点的顶部可拾取对象的位置,因
Worldwind 的 Point PlaceMark 可渲染具有通过调用 setLineEnabled 从地标向下到地形放置一条线的功能。如此屏幕截图所示: 我想要做的是添加这样的一行,它也适用于可
我正在尝试找出一种方法,以编程方式获取用户在 WorldWind AnalyticSurface 上单击的点的视觉颜色(而不是拾取颜色)。 查看AnalyticSurface和 PickedObjec
我知道在 WorldWind Java 中,您可以通过以下方式找到海拔高度和特定位置: public Double getPositionElevationMeters(Double lat, Dou
本文整理了Java中gov.nasa.worldwind.util.WWMath类的一些代码示例,展示了WWMath类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Mav
我正在从事与 nasa worldwind 相关的项目。 任何人都可以向我解释一下,我可以删除世界地图吗? 位于屏幕左上方。 最佳答案 如果您使用的是自定义 layers.xml 文件,您可以注释掉以
所以,我意识到这可能不是正确的网站,但我认为在 WorldWind 论坛上提问是不礼貌的。如果应该在其他地方,请告诉我。 无论如何... 我有一个 Java 应用程序,当前使用 WorldWind 来
我是 Web WorldWind 的新手,如果这是一个简单的问题,请原谅我,但我还没有在文档或其他地方找到解决方案。我有以下内容: Your browser does n
大家好!我在 WorldWind 库(它是 NASA 库)方面遇到了一些问题。我在 JetBrains Idea 14 中使用 Java 8 编写应用程序。在 Idea 中,我可以成功编译并运行我的应
我正在使用 WorldWind 并尝试在同一层中“挑选”多个表面图像,但不明白为什么它不起作用。 我的印象是这样称呼: this.getWwd().getSceneController().setDe
我有一个 WorldWindow,上面有各种 RenderableLayer。我想在运行时添加一个 CompassLayer。 try { String compassPath = "imag
我是一名优秀的程序员,十分优秀!