There is a Java class which creates a POST request and sends it to a servlet. The main method of the class file (test) looks something like this:
public static void main(String[] args) throws IOException { // Code logic goes here... // No return Statement }
This is called from a KornShell (ksh) script something like this:
retcode=`$CLK_JAVA_PATH -cp $CLASSPATH test ${PASSWORD} ${HOSTNAME} ${TOOLSET}` if [ $? != "0" ];then echo "ERROR: echo "${retcode}" else echo "${SCRIPT} Success" fi
retcode
always has the value "2" independent of if the code fails or succeeds. My question is since the return type of my main method is "void" why is the code returning some value?
The Java HashMap values() method returns a view of all the values present in entries of the hashmap. Here, hashmap is an object of the HashMap class.
It is possible, but you need to change your code a bit.
The return value of a Java application is not the return value of it's main
method, because a Java application doesn't necessarily end when it's main
method has finished execution.
Instead the JVM ends when no more non-daemon threads are running or when System.exit()
is called.
And System.exit()
is also the only way to specify the return value: the argument passed to System.exit()
will be used as the return value of the JVM process on most OS.
So ending your main()
method with this:
System.exit(0);
will ensure two things:
main
is reached andJava programs do not return an exit code back to the operating system by returning a value from main
, as is done in C and C++. You can exit the program and specify the exit code by calling System.exit(code);
, for example:
// Returns exit code 2 to the operating system System.exit(2);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With