2

我正在尝试使用 Firefox 作为在我的 Eclipse RCP 插件中运行的 SWT 浏览器。

我尝试使用在此处找到的以下代码加载 XULRunner :

    Bundle bundle = Platform.getBundle(PLUGIN_NAME); //$NON-NLS-1$
    if (bundle != null) {
        URL resourceUrl = bundle.getResource("xulrunner"); //$NON-NLS-1$
        if (resourceUrl != null) {
            try {
                URL fileUrl = FileLocator.toFileURL(resourceUrl);
                File file = new File(fileUrl.toURI());
                System.setProperty(
                        "org.eclipse.swt.browser.XULRunnerPath", "file:///" + file.getAbsolutePath()); //$NON-NLS-1$
                System.setProperty("org.eclipse.swt.browser.DefaultType",
                        "mozilla");

            } catch (IOException e) {
                e.printStackTrace();
            } catch (URISyntaxException e) {
                e.printStackTrace();
            }
        }
    }
    Browser webBrowser = new Browser(parent, SWT.MOZILLA);

我正在使用 Windows 7 x86 和 Eclipse Indigo。我试过 XULrunner 3.6.25 和 10。我使用的 Firefox 版本是 10 和 22。

不管是什么版本,它都会崩溃,给出这个堆栈跟踪:

org.eclipse.swt.SWTError: XPCOM error -2147467259
at org.eclipse.swt.browser.Mozilla.error(Mozilla.java:2502)
at org.eclipse.swt.browser.Mozilla.initXULRunner(Mozilla.java:2464)
at org.eclipse.swt.browser.Mozilla.create(Mozilla.java:672)
at org.eclipse.swt.browser.Browser.<init>(Browser.java:99)

如果我删除file:///XULRunner 之前的路径,我会c is not a registered protocol在 XULrunner 3.6.25 中得到错误。

有谁知道这个特定的 XPCOM 错误是什么意思以及如何解决它?

4

1 回答 1

2

基于这个答案,这些是使 Firefox 在 Eclipse 中为我工作的步骤:

  1. 安装 Ajax 工具框架 ( http://wiki.eclipse.org/ATF/Installing )
  2. 在“运行配置...”->“插件”下添加org.mozilla.xulrunnerorg.mozilla.xulrunner.win32.win32.x86
  3. 使用以下代码在 swt.browser 中启动 Firefox:

    Bundle bundle = Platform.getBundle("org.mozilla.xulrunner"); //$NON-NLS-1$  
    if (bundle != null) {
        URL resourceUrl = bundle.getResource("xulrunner"); //$NON-NLS-1$
        if (resourceUrl != null) {
            try {
                URL fileUrl = FileLocator.toFileURL(resourceUrl);
                File file = new File(fileUrl.toURI());
                System.setProperty("org.eclipse.swt.browser.DefaultType",
                        "mozilla");
                System.setProperty(
                        "org.eclipse.swt.browser.XULRunnerPath", file.getAbsolutePath()); //$NON-NLS-1$
    
            } catch (IOException e) {
                e.printStackTrace();
            } catch (URISyntaxException e) {
                e.printStackTrace();
            }
        }
    } else {
        System.err.println("Could not find XULrunner bundle");
    }
    Browser webBrowser = new Browser(parent, SWT.MOZILLA);
    GridData grid = new GridData(GridData.FILL_BOTH);
    webBrowser.setLayoutData(grid);
    // Prepending "file://" prevents the "<driveletter> is not a registered protocol" error
    String graphUrl = "file://C:/Users/you/yourGraph.html"
    webBrowser.setUrl(graphUrl);
    
于 2013-08-01T10:03:47.727 回答