eclipse RCP 开发中的程序参数使用 博客分类: eclipse
程序员文章站
2024-03-20 08:06:40
...
在使用eclipse进行rcp开发时等,如果需要配置自定义程序参数,可以在eclipse运行配置窗口的arguments中写入。
在使用时,win系统
Object x = properties.get("eclipse.commands");
String string = x.toString();
String str = "-selfcq\n";
int indexOf = string.indexOf(str);
indexOf += str.length();
int indexOf2 = string.indexOf("\n", indexOf);
String ss = string.substring(indexOf, indexOf2);
System.out.println(ss);// 指定的名称selfcq下的参数值ss
推荐阅读
-
eclipse RCP 开发中的程序参数使用 博客分类: eclipse
-
eclipse中开发Hadoop2.x的Map/Reduce项目汇总 博客分类: Hadoop Hadoop
-
elasticsearch2.0源码在开发环境eclipse中启动的问题及解决方案 博客分类: 开源软件 elasticsearch
-
elasticsearch2.0源码在开发环境eclipse中启动的问题及解决方案 博客分类: 开源软件 elasticsearch
-
使用Eclipse编译c程序 数学函数提示undefined reference to “XXX”的解决方法 博客分类: Linux eclipseLinux eclipsegcc
-
如何在Eclipse PDE的Error Log View中显示自己的Log 博客分类: Eclipse Plug-in开发 Eclipse工作
-
如何在Eclipse PDE的Error Log View中显示自己的Log 博客分类: Eclipse Plug-in开发 Eclipse工作
-
如何在自己编写的Plugin中使用第三方jar 博客分类: Eclipse Plug-in开发 EclipseHibernateXML
-
如何在当前Eclipse的Console View中输出信息 博客分类: Eclipse Plug-in开发 Eclipse
-
RCP中可勾选的tableview CheckboxTableViewer 博客分类: eclipse&RCP