org.eclipse.jdt.core.compiler.batch
类 BatchCompiler

java.lang.Object
  继承者 org.eclipse.jdt.core.compiler.batch.BatchCompiler

public final class BatchCompiler
extends Object

A public API for invoking the Eclipse Compiler for Java. E.g.

 BatchCompiler.compile("C:\\mySources\\X.java -d C:\\myOutput", new PrintWriter(System.out), new PrintWriter(System.err), null);
 

从以下版本开始:
3.4

方法摘要
static boolean compile(String[] commandLineArguments, PrintWriter outWriter, PrintWriter errWriter, CompilationProgress progress)
          Invokes the Eclipse Compiler for Java with the given command line arguments, using the given writers to print messages, and reporting progress to the given compilation progress.
static boolean compile(String commandLine, PrintWriter outWriter, PrintWriter errWriter, CompilationProgress progress)
          Invokes the Eclipse Compiler for Java with the given command line arguments, using the given writers to print messages, and reporting progress to the given compilation progress.
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

方法详细信息

compile

public static boolean compile(String commandLine,
                              PrintWriter outWriter,
                              PrintWriter errWriter,
                              CompilationProgress progress)
Invokes the Eclipse Compiler for Java with the given command line arguments, using the given writers to print messages, and reporting progress to the given compilation progress. Returns whether the compilation completed successfully.

Reasons for a compilation failing to complete successfully include:

The specification of the command line arguments is defined by running the batch compiler's help

BatchCompiler.compile("-help", new PrintWriter(System.out), new PrintWriter(System.err), null);

参数:
commandLine - the command line arguments passed to the compiler
outWriter - the writer used to print standard messages
errWriter - the writer used to print error messages
progress - the object to report progress to and to provide cancellation, or null if no progress is needed
返回:
whether the compilation completed successfully

compile

public static boolean compile(String[] commandLineArguments,
                              PrintWriter outWriter,
                              PrintWriter errWriter,
                              CompilationProgress progress)
Invokes the Eclipse Compiler for Java with the given command line arguments, using the given writers to print messages, and reporting progress to the given compilation progress. Returns whether the compilation completed successfully.

Reasons for a compilation failing to complete successfully include:

The specification of the command line arguments is defined by running the batch compiler's help

BatchCompiler.compile("-help", new PrintWriter(System.out), new PrintWriter(System.err), null);

Note that a true returned value indicates that no errors were reported, no runtime exceptions occurred and that the compilation was not canceled.

参数:
commandLineArguments - the command line arguments passed to the compiler
outWriter - the writer used to print standard messages
errWriter - the writer used to print error messages
progress - the object to report progress to and to provide cancellation, or null if no progress is needed
返回:
whether the compilation completed successfully


Copyright © 2013. All Rights Reserved.