Java JDIC 错误消息
我的 Java 应用程序中有以下行,它导致以下错误消息:
WebBrowser webBrowser=new WebBrowser();
org.jdesktop.jdic.init.JdicInitException: java.io.IOException: The filename, directory name, or volume label syntax is incorrect
at org.jdesktop.jdic.init.JdicManager.initBrowserNative(Unknown Source)
at org.jdesktop.jdic.browser.WebBrowser.<clinit>(Unknown Source)
应用程序仍然有效,但我想知道是否有办法纠正错误?
I have the following line in my Java app, and it's causing the following error message :
WebBrowser webBrowser=new WebBrowser();
org.jdesktop.jdic.init.JdicInitException: java.io.IOException: The filename, directory name, or volume label syntax is incorrect
at org.jdesktop.jdic.init.JdicManager.initBrowserNative(Unknown Source)
at org.jdesktop.jdic.browser.WebBrowser.<clinit>(Unknown Source)
The app still works, but I wonder if there is a way to correct the error ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
初始化 jdic 的本机浏览器时出现问题,但不清楚是什么问题。
将 URL 传递给构造函数有帮助吗?
还有一件事要检查 - 您有默认浏览器吗?如果是这样,当您双击文件管理器中的 html 文件时,浏览器窗口会打开吗?如果这不起作用,那么 jdic 可能会抱怨您的默认浏览器路径。
There's a problem initializing jdic's native browser but it isn't obvious what it is.
Does passing a URL to the constructor help?
One more thing to check - do you have a default browser? If so, when you double click on an html file in a file manager does the browser window open? If this doesn't work then perhaps jdic is complaining about your default browser path.