JAVA:如何从首选项页面访问文件路径并在编程代码中使用它

2023-08-23Java开发问题
0

本文介绍了JAVA:如何从首选项页面访问文件路径并在编程代码中使用它的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我的 ProcessBuilder 类 ---

My ProcessBuilder class ---

 public class HelloWorldAction implements IWorkbenchWindowActionDelegate {
IWorkbenchWindow activeWindow = null;

public void run(IAction proxyAction) {

    MessageConsole myConsole = null;
    String name = "outputConsole";

    ConsolePlugin plugin = ConsolePlugin.getDefault();
    IConsoleManager conMan = plugin.getConsoleManager();
    IConsole[] existing = conMan.getConsoles();
    for (int i = 0; i < existing.length; i++)
       if (name.equals(existing[i].getName()))
           myConsole = (MessageConsole) existing[i];

      //no console found, so create a new one
    if (myConsole == null)
        myConsole = new MessageConsole(name, null);

    conMan.addConsoles(new IConsole[]{myConsole});

    IWorkbench wb = PlatformUI.getWorkbench();
    IWorkbenchWindow win = wb.getActiveWorkbenchWindow();
    IWorkbenchPage page = win.getActivePage();

    String id = IConsoleConstants.ID_CONSOLE_VIEW;
    try
    {
        IConsoleView view = (IConsoleView) page.showView(id);
        view.display(myConsole);

    }
    catch (Exception e)
    {

    }

    MessageConsoleStream out = myConsole.newMessageStream();
    out.println("Prism Button Works !");


    try {           //to clear the console on every click of button

        IViewPart view = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().findView(IConsoleConstants.ID_CONSOLE_VIEW);
        if (view != null) {
            (myConsole).clearConsole();
        }
        ProcessBuilder pb=new ProcessBuilder("C:\Program Files\prism-4.0\bin\prism.bat");
        pb.directory(new File("C:\Program Files\prism-4.0\bin"));
        Process p=pb.start();

        BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));

        String in;
        while((in = input.readLine()) != null) {
            out.println(in);
        }


        int exitVal=p.waitFor();            

       if(exitVal==0)
       {
            out.println("Printing on console");

        }
       else
           out.println("Process failed");
    }
        catch (Exception e)
        {
            out.println(e.toString());
            e.printStackTrace();

        }
    } 
// IActionDelegate method
public void selectionChanged(IAction proxyAction, ISelection selection) {
    // do nothing, action is not dependent on the selection
}

// IWorkbenchWindowActionDelegate method
public void init(IWorkbenchWindow window) {
    activeWindow = window;

}

// IWorkbenchWindowActionDelegate method
public void dispose() {
    //  nothing to do
}

}

我的 FileFieldEditorClass

My FileFieldEditorClass

   public class SAML
extends FieldEditorPreferencePage
implements IWorkbenchPreferencePage {

public SAML() {
    super(GRID);
    setPreferenceStore(RmpPlugin.getDefault().getPreferenceStore());
    setDescription("Browse Appropriate files");
}

public FileFieldEditor f;
public FileFieldEditor f1;
public void createFieldEditors() {
        f=new FileFieldEditor(PreferenceConstants.P_PATH, 
            "&Prism.bat File:", getFieldEditorParent());
    addField(f);

    f1=new FileFieldEditor(PreferenceConstants.P_PATH1, 
            "&NuSMV Application File:", getFieldEditorParent());
    addField(f1);
}
public void init(IWorkbench workbench) {
}

}

FileFieldEditor 类在 com.myplugin.rmp.preferences 包中并且 ProcessBuilder 类在 com.myplugin.rmp 包中,

FileFieldEditor class is in com.myplugin.rmp.preferences package and ProcessBuilder class is in com.myplugin.rmp package,

现在建议我访问的方式.

Now suggest me the way to way to access.

推荐答案

在你构建 ProcessBuilder 的 try-block 中试试这个:

Try this inside your try-block where you construct your ProcessBuilder:

 IPreferenceStore store = plugin.getPreferenceStore();

 ProcessBuilder pb=new ProcessBuilder(store.getString(PreferenceConstants.P_PATH);
 pb.directory(new File(store.getString(PreferenceConstants.P_PATH1));
 Process p=pb.start();

这篇关于JAVA:如何从首选项页面访问文件路径并在编程代码中使用它的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

如何使用 JAVA 向 COM PORT 发送数据?
How to send data to COM PORT using JAVA?(如何使用 JAVA 向 COM PORT 发送数据?)...
2024-08-25 Java开发问题
21

如何使报表页面方向更改为“rtl"?
How to make a report page direction to change to quot;rtlquot;?(如何使报表页面方向更改为“rtl?)...
2024-08-25 Java开发问题
19

在 Eclipse 项目中使用西里尔文 .properties 文件
Use cyrillic .properties file in eclipse project(在 Eclipse 项目中使用西里尔文 .properties 文件)...
2024-08-25 Java开发问题
18

有没有办法在 Java 中检测 RTL 语言?
Is there any way to detect an RTL language in Java?(有没有办法在 Java 中检测 RTL 语言?)...
2024-08-25 Java开发问题
11

如何在 Java 中从 DB 加载资源包消息?
How to load resource bundle messages from DB in Java?(如何在 Java 中从 DB 加载资源包消息?)...
2024-08-25 Java开发问题
13

如何更改 Java 中的默认语言环境设置以使其保持一致?
How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)...
2024-08-25 Java开发问题
13