欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

eclipse RCP 开发中的程序参数使用 博客分类: eclipse

程序员文章站 2024-03-20 08:06:40
...

在使用eclipse进行rcp开发时等,如果需要配置自定义程序参数,可以在eclipse运行配置窗口的arguments中写入。

eclipse RCP 开发中的程序参数使用
            
    
    博客分类: eclipse

 

在使用时,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