简体   繁体   English

没有更多句柄[无法检测已注册的XULRunner使用]

[英]No more handles [Could not detect registered XULRunner to use]

I am using SWT 3.7 to create an RCP application. 我正在使用SWT 3.7来创建RCP应用程序。 Windows is my OS and IE is set as the default SWT browser. Windows是我的操作系统,IE被设置为默认的SWT浏览器。 I want to change the default browser from IE to Mozilla. 我想将默认浏览器从IE更改为Mozilla。 I've read a few articles and learned that by adding arguments to the eclipse.ini file ( -Dorg.eclipse.swt.browser.DefaultType=mozilla ) one can set the default SWT browser. 我已经阅读了一些文章,并了解到通过在eclipse.ini文件中添加参数( -Dorg.eclipse.swt.browser.DefaultType=mozilla ),可以设置默认的SWT浏览器。

But after adding it to vm arguments (because when adding to the .ini file it is not doing anything), I get the error below: 但是在将它添加到vm参数之后(因为当添加到.ini文件时它没有做任何事情),我得到以下错误:

org.eclipse.swt.SWTError: No more handles [Could not detect registered XULRunner to use]
    at org.eclipse.swt.SWT.error(SWT.java:4308)
    at org.eclipse.swt.browser.Mozilla.create(Mozilla.java:683)
    at org.eclipse.swt.browser.Browser.<init>(Browser.java:99)

The code is breaking on line: 代码在线:

Browser browser = new Browser(parent, SWT.None);

I have already downloaded xulrunner, ran the register command, checked in registry (it's there), added -Dorg.eclipse.swt.browser.XULRunnerPath="C://Program Files (x86)//Mozilla XULRunner//1.9.1//xulrunner" to vmargs but I still get the same error. 我已经下载了xulrunner,运行了register命令,在注册表中检查了它的存在,并添加了-Dorg.eclipse.swt.browser.XULRunnerPath="C://Program Files (x86)//Mozilla XULRunner//1.9.1//xulrunner"到vmargs,但仍然出现相同的错误。

Can anyone help me on this issue? 任何人都可以帮我解决这个问题吗?

Found this in the eclipse forum: 在eclipse论坛中找到了这个:

"Found the problem. I needed to do xulrunner --register-global as administrator. Since there is no difference in the xulrunner output, the only way to tell if the registration occurred is to look in HKLM\\SOFTWARE\\Wow6432Node\\mozilla.org\\GRE" “发现了问题。我需要以管理员身份执行xulrunner --register-global。由于xulrunner输出没有差异,所以唯一可以确定是否发生注册的方法是查看HKLM \\ SOFTWARE \\ Wow6432Node \\ mozilla.org \\ GRE”

http://www.eclipse.org/forums/index.php/mv/msg/199032/#msg_634819 http://www.eclipse.org/forums/index.php/mv/msg/199032/#msg_634819

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM