Eclipse 中的 LookAndFeel Java Synthetica

发布于 2024-11-03 14:14:46 字数 615 浏览 0 评论 0原文

我正在 Eclipse 和 WindowBuilder 中开发一个应用程序。

我尝试为 GUI 应用程序添加外观。

我使用了 Synthetica BlueMoon 外观

我将 Synthetica.jar 添加到类路径中,并将此代码添加到主目录中:

import de.javasoft.plaf.synthetica.SyntheticaBlueMoonLookAndFeel;


try 
{
  UIManager.setLookAndFeel(new SyntheticaBlueMoonLookAndFeel());
} 
catch (Exception e) 
{
  e.printStackTrace();
}

因此,在导入

The type de.javasoft.plaf.synthetica.SyntheticaLookAndFeel 无法解析后,我收到此错误消息。它是从所需的 .class 文件间接引用的

这是 Eclipse 的屏幕截图。

在此处输入图像描述

I'm developing an application in Eclipse and WindowBuilder.

I tried to add a look and feel to GUI application.

I used Synthetica BlueMoon Look and Feel .

I added the Synthetica.jar to the class path and I added this code to the main:

import de.javasoft.plaf.synthetica.SyntheticaBlueMoonLookAndFeel;


try 
{
  UIManager.setLookAndFeel(new SyntheticaBlueMoonLookAndFeel());
} 
catch (Exception e) 
{
  e.printStackTrace();
}

So I got this error message after the import

The type de.javasoft.plaf.synthetica.SyntheticaLookAndFeel cannot be resolved. It is indirectly referenced from required .class files

This is a screenshot from Eclipse.

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

树深时见影 2024-11-10 14:14:46

执行以下操作,看看是否可以解决您的问题:

  1. 右键单击​​您的项目并选择“属性”。
  2. 在选项窗格中选择“Java Build Path”,然后选择“Libraries”选项卡。
  3. 单击“添加 JAR...”或“添加外部 JAR...”并搜索并添加“Synthetica.jar”。
  4. 完成后,单击“确定”。

现在运行您的应用程序。

我假设您正在 Eclipse 中运行应用程序。

Do the following, and see if this resolves your problem:

  1. Right-Click your project and select "Properties".
  2. Select "Java Build Path" on the option pane and select "Libraries" tab.
  3. Click "Add JARs..." or "Add External JARs..." and search and add "Synthetica.jar".
  4. Once done, Click "OK".

Now run your application.

I'm assuming you're running your application within Eclipse.

月朦胧 2024-11-10 14:14:46

java.lang.NoClassDefFoundError:sun/swing/plaf/ Synth/SynthUI 我找到了解决方案。我遇到了同样的问题。它需要额外的罐子。

JARS 需要

1)seaglasslookandfeel0.2 罐子
https://seaglass.googlecode.com/svn/doc/downloads.html

2)synthetica.jar http://www.javasoft.de/synthetica/download/

3) junit 3.8 jar

4)您选择的synthetica主题jar: http://www.javasoft.de/synthetica/themes/ 5

)syntheta插件jar来支持swing插件,如日期选择器等
http://www.jyloo.com/syntheticaaddons/download/

java.lang.NoClassDefFoundError: sun/swing/plaf/synth/SynthUI I found the solution. I faced the same issue. It needs additional jars.

JARS Required

1) seaglasslookandfeel0.2 jar at
https://seaglass.googlecode.com/svn/doc/downloads.html

2) synthetica.jar http://www.javasoft.de/synthetica/download/

3) junit 3.8 jar http://www.java2s.com/Code/Jar/j/Downloadjunit309jar.htm

4) The theme jar of synthetica that you select: http://www.javasoft.de/synthetica/themes/

5) synthetica add ons jar to support swing addons like date picker etc
http://www.jyloo.com/syntheticaaddons/download/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文