Hi people. I am working on a small project of java (which i create in Netbeans). The application is working fine in netbeans. Now, when i am creating the batch file (this is the requirement) that starts my application. Things are bit weird. Following is my batch file code : @ECHO OFF set HOME=%CD% JAVA -Djline.terminal=jline.UnsupportedTerminal -jar My_Jar.jar "%HOME%\\" When i ...