Use UltraEdit to compile Java
Can you use UltraEdit to compile Java code?
The answer: YES!. UltraEdit does not have an embedded compiler, however, you can configure a tool which will pass your code to the Java Compiler.
To configure the Java Compiler you will need to use the following information:
Command Line: " E:\jdk1.3\bin\javac "%n%e" "
Working Directory: "%p"
Menu Item Name: "Run Java Compiler"
Command Output (DOS Commands): "Output to List Box and Capture Output"
Java Compiler Tool
In the Command line field type: E:\jdk1.3\bin\javac "%n%e"
- E:\jdk1.3\bin\javac - Path to Java Compiler
- "%n" - fileName only ("test")
- "%e" - Extension only (".c")

In the Working Directory field type: %p
- %P - Path of file ex. ("C:\project\test\")
- Please note: the %p cannot be enclosed with quotes.

In the Menu Item Name field type: "Run Java Compiler"
- Please note: This may be whatever you would like to name your tool.

In the Command Output section select the following options: "Output to List Box" and "Capture Output".

After completing the above steps click on the"Insert" button and your custom tool will be added.
Now that you are done, click "OK".















