Search:

Type: Posts; User: helloworld922

Search: Search took 0.12 seconds.

  1. Replies
    12
    Views
    1,441

    Re: Running .JAR file issue.

    NPE = NullPointerException
  2. Replies
    12
    Views
    1,441

    Re: Running .JAR file issue.

    What I meant was the solution presented in that post doesn't use external processes at all. No need to worry about any processes terminating correctly or having to parse piped output, you just get...
  3. Replies
    12
    Views
    1,441

    Re: Running .JAR file issue.

    I don't have an XP machine to test with, but I did find this post over at stack exchange where they were able to read/write to the Windows registry without having to use JNI, reg processes, etc. It...
  4. Replies
    12
    Views
    1,441

    Re: Running .JAR file issue.

    You shouldn't be killing the process, just wait for it to terminate normally.


    p = Runtime.getRuntime().exec("command");
    p.waitFor(); // waits until process p terminates
Results 1 to 4 of 4