Tech Me More

To quench our thirst of sharing knowledge about our day to day experience & solution to techincal problems we face in our projects.

Advertise with us !
Send us an email at diehardtechy@gmail.com

Tuesday, October 27, 2015

How to configure Java complier and Java run time enviornment in Edit plus?

Edit plus is an easy to go software when it comes to small program execution, edit plus can be configured to compile and run any java program without opening the command prompt.

To configure the java compiler and JVM in edit plus please follow the below steps.

1. Go to tools-->configure user tool

below window will open.




2. Click add tool and select Program.

3. In the Menu Text give the name as Javac <You can give any name as you want.>

4. In the command section select the path of javac.exe file which is usually inside C:\Program Files\Java\jdk1.8.0_60\bin\javac.exe

5. In the argument section select fileName.

6. In initial directory section select file directory.

7. Click OK.

To set the Java run time environment repeat the step 1 and 2.

8. In the menu text give the name as Run <You can give any name as you want.>

9. In the command section select the path of java.exe file which is usually inside C:\Program Files\Java\jdk1.8.0_60\bin\java.exe

10. In the argument section select File name without extension.

11. In initial directory section select file directory.

12. Click OK.



you have successfully set up the java compiler and run time environment. 

To verify it just write a simple java program and compile it from tools-->Compile. 

To run tools-->Run

you can use the shortcut also to compile and run your program. Shortcuts are mentioned right beside tools-->the user command which you created.