我正在尝试将存储在 jar 文件中的 html 页面加载到帮助 JEditorPane 中。到目前为止,当我在 Eclipse 中运行它时它可以工作,但是当我制作一个可运行的 jar 时它不会工作,除非我将地图 res/pages/... 放在与 jar 文件相同的地图中
class HelpButtonHandler implements ActionListener{
@Override
public void actionPerformed(ActionEvent arg0) {
infodex = new JEditorPane();
helpDialog = new JDialog();
URL url1 = null;
try {
url1 = (new java.io.File("res/pages/help.html")).toURI().toURL();
} catch (MalformedURLException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
try {
infodex.setPage(url1);
} catch (IOException e) {
e.printStackTrace();
}
helpDialog.getContentPane().add(new JScrollPane(infodex));
helpDialog.setBounds(400,200,700,600);
helpDialog.show();
infodex.setEditable(false);
Hyperactive hyper = new Hyperactive();
infodex.addHyperlinkListener(hyper);
}
}