1

我在 Java Swing 的 netbeans 平台上制作了桌面应用程序。现在,如何将 myapp 的 helpOfApp.pdf 文件放入 netbeans 平台应用程序(MyApp)的菜单栏中?

4

2 回答 2

1

如何将此 .html 文件添加到我的应用程序的菜单栏?

  • 将菜单项添加到添加到栏的菜单中。
  • 向菜单项添加Action(或)。ActionListener
  • 添加F-1(帮助)的加速器。
  • 在行动。
    • 使用类似的东西获取 URL 实例
      URL urlToResource = this.getClass().getResource("/path/to/the.resource");
    • 打开一个JEditorPane(不可编辑,并且可能带有链接侦听器)指向urlToResource.

有关每个步骤的更多详细信息,请参阅相关的“关键字+java+教程”。


提示:确保所有资源(例如链接的 HTML、CSS、图像等)是:

  • 通过相对路径访问
  • 在应用程序的运行时类路径上。
于 2012-08-18T11:35:43.200 回答
0

只需添加到上面的代码

URL urlToResource = this.getClass().getResource("/path/to/the.resource");
jEditorPane1.getPage(urtToRecource);

可能工作

于 2012-08-18T12:36:33.990 回答