views:

12

answers:

1
public static void main(String[] args)
{
    String command = "/usr/bin/xulrunner -app /home/user/myapp/app.ini";

    System.out.print(command);
     try {
        Runtime rt = Runtime.getRuntime();
        Process pr = rt.exec(command);

         BufferedReader input = new BufferedReader(
                new InputStreamReader(pr.getInputStream()));
        String line = null;
        while ((line = input.readLine()) != null) {
                System.out.println("\n"+line);
        }
        int exitVal = pr.waitFor();
        System.out.println("\nExited with error code " + exitVal);
    } catch (Exception e) {
        System.out.println(e.toString());
        e.printStackTrace();
    }
}

This code prints: "Exited with error code 2"

When I run "/usr/bin/xulrunner -app /home/user/myapp/app.ini" in Terminal it works ok. It prints "Hello world"

A: 

It seems that your code to launch xulrunner is correct. You'll have to figure out why xulrunner is return 2 as an error code.

Starkey
Well, error code it's just a part of problem. The main problem is that Xulrunner don't print "Hello world" while it must.
Pasha L. Topchiyev