MyEclipse运行错误解决办法:The Linux WYSIWYG design panel is still under development

在Eclipse/MyEclipse中打开可视化编辑窗口,比如JSP的编辑工具,可能会弹出一个警告窗口,信息如下:
The Linux WYSIWYG design panel is still under development. To access an experimental version of this design panel restart with the commandline argument -Dlinux.experimental=true

解决办法:

$ sudo gedit /usr/java/eclipse/eclipse.ini //编辑eclipse目录下的eclipse.ini文件

直接在后面加入(第一句附在原文后一行,下面一段为Myeclipse参数):

-Dlinux.experimental=true


-showsplash
com.genuitec.myeclipse.product
-vmargs
-Xms128m
-Xmx512m
-Dosgi.splashLocation=/root/MyEclipse_6.0/eclipse/MyEclipseSplash.bmp
-Duser.language=en
-XX:PermSize=128M
-XX:MaxPermSize=256M
-Dlinux.experimental=true

转自:http://blog.csdn.net/littlepig991/article/details/6384487

原文地址:https://www.cnblogs.com/younggun/p/3053220.html