
computer info from command prompt image
Sarah
I am an amateur java programmer and i have created a few simple games in java using notepad++. I run and compile them on command prompt but I want to be able to launch an application straight from my computer. How can i create a .exe file from the classes I have coded uses notepad++?
Answer
Well, first things first... converting Java to EXE defeats the purpose - info here: http://www.excelsior-usa.com/articles/java-to-exe.html
Second thing, you can write a BAT file and use a BATCH to EXE converter to use it as an EXE.
Open Notepad/Notepad++
@echo off
title Your Program Title Here
java commands here
Save as Run.bat in the compiled Java folder.
You can find a BATCH to EXE converter here: http://download.cnet.com/Bat-To-Exe-Converter/3000-2069_4-10555897.html
Run it and convert Run.bat to an EXE file with your required settings.
This will run the command prompt commands you WERE using as an EXE. It's not the same as converting to an EXE, but it might help.
Well, first things first... converting Java to EXE defeats the purpose - info here: http://www.excelsior-usa.com/articles/java-to-exe.html
Second thing, you can write a BAT file and use a BATCH to EXE converter to use it as an EXE.
Open Notepad/Notepad++
@echo off
title Your Program Title Here
java commands here
Save as Run.bat in the compiled Java folder.
You can find a BATCH to EXE converter here: http://download.cnet.com/Bat-To-Exe-Converter/3000-2069_4-10555897.html
Run it and convert Run.bat to an EXE file with your required settings.
This will run the command prompt commands you WERE using as an EXE. It's not the same as converting to an EXE, but it might help.
How do you hack into your own computer?
yman
I forgot all my info. (passwords, usernames, etc. )I havent used that program for loke a month. Can u type somethin in the command prompt?
Answer
when you first turn your puter on...hit f2 go to security your password should be under management
when you first turn your puter on...hit f2 go to security your password should be under management
Powered by Yahoo! Answers






Comments :
Post a Comment