This week's giveaways are in the MongoDB and Jobs Discussion forums. We're giving away four copies of Mongo DB Applied Patterns and 4 resume reviews from Five Year Itch and have the authors/reps on-line! See this thread and this one for details.
how to write a batch file for running a java application? I am using Websphere for Java
Mustafa Musaji
Ranch Hand
Joined: May 03, 2008
Posts: 52
posted
0
Just like if you were launching it using command line. You most probably need to include any libs your program uses and the main entry point for the program.
java -cp [libs] [package] [arguments]
SCJP 5.0 - Passed
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32599
4
posted
0
You might do well to write javaw instead of java; then you don't get an unnecessary command-line window opening.