Run Java Application
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
Run Java Application
Everytime I run a Java Application in TextPad it creates a batch file that is linked to the program I am running, I am using Windows XP. Is there a way to stop this?
run java application
you may try to run your java application from the command promt.
Open command promt
change directory to the directory where you saved and compiled your class, and issue the comand
java -classpath . XXX
where XXX is name of you class
or from the TextPad you can use Tools -> Run...
than you need to create your own batch file to call it from command line there.
your batch file can be as simple as
java XXX
Open command promt
change directory to the directory where you saved and compiled your class, and issue the comand
java -classpath . XXX
where XXX is name of you class
or from the TextPad you can use Tools -> Run...
than you need to create your own batch file to call it from command line there.
your batch file can be as simple as
java XXX
Re: Run Java Application
mc_x67 wrote:Everytime I run a Java Application in TextPad it creates a batch file that is linked to the program I am running, I am using Windows XP. Is there a way to stop this?
What do you mean, "creates a batch file"? Are you just talking about the popup window (with the black background) that's created when you run, or about an actual file that's created somewhere? If it's the former, you can turn it off by selecting "[X] Capture output" from the Tools | Run.