There is a couple anomalies I have found here.
Program info: The program is a parser. It takes in data through a data input stream. Then when the data input stream is closed I call system.exit(0).
dis.close();
System.exit(0);
I have created a jar and exe. When I use the jar it seems to run fine. and everything is as expected. The console looks like this
/the/path/that/im/currently/in
$ <I type:> java -jar myprogram.jar commandLineArg *enter
Program output
Program output
Program output
<program ends and goes back to>
/the/path/that/im/currently/in
$
When I use the exe. The console looks like this, and you can see how it kind of bounces.
/the/path/that/im/currently/in
$ <I type:> ./myprogram commandLineArg *enter
/the/path/that/im/currently/in
$ Program output
Program output
Program output
<now stuck hanging until I hit enter or ctrl+c> *enter
/the/path/that/im/currently/in
$ <now i'm back where I should be>
This sounds like a problem with the tool you used to make the
.exe
file, it may no longer use a Java Virtual Machine to execute your code, or use one which is inappropriately implemented in that theSystem.exit(0)
call is not recognised as a command to also exit the wrapper process, and as stated by the Javadocs forSystem.exit(int status)
:As such, it may be worth trying another wrapper tool.