sun.tools.javac.Main : Java Glossary

*0-9ABCDEFGHIJKLMNOPQRSTUVWXYZ (all)

sun.tools.javac.Main
Oracle’s undocumented and deprecated interface to programmatically invoke the javac.exe compiler as a class that runs in your own JVM (Java Virtual Machine). It is replaced by javax.tools. JavaCompiler.

In Java version 1.5-, you have only an undocumented and hence deprecated technique of invoking the javac.exe compiler programmatically.

You normally invoke javac.exe from the command line, but you can also invoke it from within a Java program. Use the sun.tools.javac.Main class located in jdk1.8.0_131/lib/tools.jar to pass it an array of Strings equivalent to the command line parameters. You might do this to bulk-compile large numbers of files without reloading the javac compiler for each file. Beware! The following example uses an undocumented, deprecated technique calling com.sun.tools.javac.Main. Normally you would use javax.tools. Here is how you use it:

This technique how ANT achieves its remarkable speed compiling large number of files. It does not keep loading java.exe over and over.

You too might use this technique for speed to avoid reloading javac.exe, or to have arbitrarily long command lines. You can also get long command lines with the @listOfFiles technique.

Capturing the error messages from javac.exe can be a hassle since they scroll off the screen faster than you can read them. Ordinary > redirection won’t capture them to a file because they are going to STDERR, not STDOUT. I use a program called tcc/TakeCommand to solve this problem. It lets you independently redirect STDOUT and STDERR. You can also use the -Xstdout to bypass the problem.

In Java version 1.6 or later programmatic invocation of the compiler will become an official interface. Read the JSR. For more details on how you do on the fly composing, compilation and execution see my sample code.

Learning More

Oracle’s Javadoc on javax.tools.JavaCompiler class : available:

This page is posted
on the web at:

http://mindprod.com/jgloss/javacmain.html

Optional Replicator mirror
of mindprod.com
on local hard disk J:

J:\mindprod\jgloss\javacmain.html
Canadian Mind Products
Please the feedback from other visitors, or your own feedback about the site.
Contact Roedy. Please feel free to link to this page without explicit permission.

IP:[65.110.21.43]
Your face IP:[34.201.37.128]
You are visitor number