Java JDIC 错误消息

发布于 2024-08-13 19:54:01 字数 426 浏览 4 评论 0原文

我的 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 技术交流群。

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

发布评论

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

评论(1

梦初启 2024-08-20 19:54:01

初始化 jdic 的本机浏览器时出现问题,但不清楚是什么问题。

将 URL 传递给构造函数有帮助吗?

URL        url        = new URL("http://www.stackoverflow.com");
WebBrowser webBrowser = new WebBrowser();

还有一件事要检查 - 您有默认浏览器吗?如果是这样,当您双击文件管理器中的 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?

URL        url        = new URL("http://www.stackoverflow.com");
WebBrowser webBrowser = new WebBrowser();

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.

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