gpt4 book ai didi

java - 将 SWT 应用程序导出为 jar 文件

转载 作者:行者123 更新时间:2023-12-01 13:01:25 24 4
gpt4 key购买 nike

我将 WindowBuilder 安装到 Eclipse 并创建了由一个类组成的程序。该类由WinowsBuilder直接生成,仅包含一个空窗口。我可以在 eclipse 上运行这个程序。我将程序导出到 jar 文件,但当我尝试启动它时它会抛出错误。错误提示“无法启动 Java JAR“gui.jar”。”尝试遵循本教程http://wiki.eclipse.org/FAQ_How_do_I_create_an_executable_JAR_file_for_a_stand-alone_SWT_program%3F但它仍然不起作用。

更新:通过终端启动 jar 文件时出现以下错误:

  Exception in thread "main" java.lang.NoClassDefFoundError: swing2swt/layout/BorderLayout
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:2531)
at java.lang.Class.getMethod0(Class.java:2774)
at java.lang.Class.getMethod(Class.java:1663)
at sun.launcher.LauncherHelper.getMainMethod(LauncherHelper.java:494)
at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:486)
Caused by: java.lang.ClassNotFoundException: swing2swt.layout.BorderLayout
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
... 6 more

我应该如何将 SWT 应用程序导出为独立 jar?

最佳答案

因此,作为上述评论的结论:

  • 您需要包含在 jar 导出过程中引用的所有库,否则它们将不会包含在 jar 文件中。
  • 由于您运行的是 OSX,因此您需要在启动 jar 时使用 VM 参数 -XstartOnFirstThread,或者您可以按照 here 的描述创建一个正确的 OSX 应用程序。和 here

关于java - 将 SWT 应用程序导出为 jar 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23488222/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com