How can i run a .jar file in java

Wiggy boy :

I'm making an update function for my project, it's working great, until i want it to restart, basically I download the new file and replace it with the old one, and then i want to run it again, now for some reason it doesn't wna run, and i don't get any error...

Here is the complete update class: http://dl.dropbox.com/u/38414202/Update.txt

Here is the method i'm using to run my .jar file:

 String currDir = new File("(CoN).jar").getAbsolutePath();
 Process runManager = Runtime.getRuntime().exec("java -jar " + currDir);
Wiggy boy :

No one here seemed to help me, so I went to ask my friend and I had it almost right. It abiously required the string to be an array.

solution:

String[] cmd = {"java", "-jar", currDir};
try {
  Runtime.getRuntime().exec(cmd);
} catch (IOException e1) {
  e1.printStackTrace();
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

TOP Ranking

HotTag

Archive