使用JDIC的webbrowser组件在中文目录下不能正常显示html页面
我将运行程序安装在中文目录下(目录名称里含有中文),发现使用webbrowser打开的html页面不能显示。
代码如下:
JPanel webPnl = new JPanel(new BorderLayout());
WebBrowser helpUrlPanel = new WebBrowser(false);
helpUrlPanel.setDebug(true);
webPnl.add(helpUrlPanel, BorderLayout.CENTER);
URL url = new File("D:/test.html").toURI().toURL();
helpUrlPanel.setURL(url);
运行程序报的错:
*** Jtrace: JDIC found BIN path=[D:\Program File\eclipse3.5\R12_SingleOSS1.0\test测试\lib\jdic\windows\x86]
Can't execute the native embedded browser. Error message: Cannot run program "IeEmbed.exe": CreateProcess error=2, ?????????
*** Jtrace:
MyFocusListener: focusGained
*** Jtrace: You can't call this method before WebBrowser is initialized!
而且还存在一个问题是,当反复打开关闭该浏览页面,将会导致整个应用程序挂死,无法正常关闭。
是调用helpUrlPanel.dispose(); 时出的错。
请各位指教,谢谢