4632N/A." Copyright (c) 1994, 2011, Oracle and/or its affiliates. All rights reserved.
4632N/A." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4632N/A."
4632N/A." This code is free software; you can redistribute it and/or modify it
4632N/A." under the terms of the GNU General Public License version 2 only, as
4632N/A." published by the Free Software Foundation.
4632N/A."
4632N/A." This code is distributed in the hope that it will be useful, but WITHOUT
4632N/A." ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4632N/A." FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
4632N/A." version 2 for more details (a copy is included in the LICENSE file that
4632N/A." accompanied this code).
4632N/A."
4632N/A." You should have received a copy of the GNU General Public License version
4632N/A." 2 along with this work; if not, write to the Free Software Foundation,
4632N/A." Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4632N/A."
4632N/A." Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4632N/A." or visit www.oracle.com if you need additional information or have any
4632N/A." questions.
4632N/A."
4632N/A.TH javac 1 "10 May 2011"
4632N/A
4632N/A.LP
4632N/A.SH "Name"
4632N/Ajavac \- Java programming language compiler
4632N/A.LP
4632N/A.SH "SYNOPSIS"
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A \fP\f3javac\fP [ options ] [ sourcefiles ] [ classes ] [ @argfiles ]
4632N/A.fl
4632N/A
4632N/A.fl
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.LP
4632N/AArguments may be in any order.
4632N/A.LP
4632N/A.RS 3
4632N/A.TP 3
4632N/Aoptions
4632N/ACommand\-line options.
4632N/A.TP 3
4632N/Asourcefiles
4632N/AOne or more source files to be compiled (such as MyClass.java).
4632N/A.TP 3
4632N/Aclasses
4632N/AOne or more classes to be processed for annotations (such as MyPackage.MyClass).
4632N/A.TP 3
4632N/A@argfiles
4632N/AOne or more files that lists options and source files. The \f2\-J\fP options are not allowed in these files.
4632N/A.RE
4632N/A
4632N/A.LP
4632N/A.SH "DESCRIPTION"
4632N/A.LP
4632N/A.LP
4632N/AThe \f3javac\fP tool reads class and interface definitions, written in the Java programming language, and compiles them into bytecode class files. It can also process annotations in Java source files and classes.
4632N/A.LP
4632N/A.LP
4632N/AThere are two ways to pass source code file names to \f3javac\fP:
4632N/A.LP
4632N/A.RS 3
4632N/A.TP 2
4632N/Ao
4632N/AFor a small number of source files, simply list the file names on the command line.
4632N/A.TP 2
4632N/Ao
4632N/AFor a large number of source files, list the file names in a file, separated by blanks or line breaks. Then use the list file name on the \f3javac\fP command line, preceded by an \f3@\fP character.
4632N/A.RE
4632N/A
4632N/A.LP
4632N/A.LP
4632N/ASource code file names must have \f2.java\fP suffixes, class file names must have \f2.class\fP suffixes, and both source and class files must have root names that identify the class. For example, a class called \f2MyClass\fP would be written in a source file called \f2MyClass.java\fP and compiled into a bytecode class file called \f2MyClass.class\fP.
4632N/A.LP
4632N/A.LP
4632N/AInner class definitions produce additional class files. These class files have names combining the inner and outer class names, such as \f2MyClass$MyInnerClass.class\fP.
4632N/A.LP
4632N/A.LP
4632N/AYou should arrange source files in a directory tree that reflects their package tree. For example, if you keep all your source files in \f3/workspace\fP, the source code for \f2com.mysoft.mypack.MyClass\fP should be in \f3/workspace/com/mysoft/mypack/MyClass.java\fP.
4632N/A.LP
4632N/A.LP
4632N/ABy default, the compiler puts each class file in the same directory as its source file. You can specify a separate destination directory with \f3\-d\fP (see Options, below).
4632N/A.LP
4632N/A.SH "OPTIONS"
4632N/A.LP
4632N/A.LP
4632N/AThe compiler has a set of standard options that are supported on the current development environment and will be supported in future releases. An additional set of non\-standard options are specific to the current virtual machine and compiler implementations and are subject to change in the future. Non\-standard options begin with \f3\-X\fP.
4632N/A.LP
4632N/A.SS
4632N/AStandard Options
4632N/A.LP
4632N/A.RS 3
4632N/A.TP 3
4632N/A\-Akey[=value]
4632N/AOptions to pass to annotation processors. These are not interpreted by javac directly, but are made available for use by individual processors. \f2key\fP should be one or more identifiers separated by ".".
4632N/A.TP 3
4632N/A\-cp path or \-classpath path
4632N/ASpecify where to find user class files, and (optionally) annotation processors and source files. This class path overrides the user class path in the \f3CLASSPATH\fP environment variable. If neither \f3CLASSPATH\fP, \f3\-cp\fP nor \f3\-classpath\fP is specified, the user class path consists of the current directory. See Setting the Class Path for more details.
4632N/A.br
4632N/A.br
4632N/A>If the \f3\-sourcepath\fP option is not specified, the user class path is also searched for source files.
4632N/A.br
4632N/A.br
4632N/AIf the \f3\-processorpath\fP option is not specified, the class path is also searched for annotation processors.
4632N/A.TP 3
4632N/A\-Djava.ext.dirs=directories
4632N/AOverride the location of installed extensions.
4632N/A.TP 3
4632N/A\-Djava.endorsed.dirs=directories
4632N/AOverride the location of endorsed standards path.
4632N/A.TP 3
4632N/A\-d directory
4632N/ASet the destination directory for class files. The directory must already exist; \f3javac\fP will not create it. If a class is part of a package, \f3javac\fP puts the class file in a subdirectory reflecting the package name, creating directories as needed. For example, if you specify \f3\-d /home/myclasses\fP and the class is called \f2com.mypackage.MyClass\fP, then the class file is called \f2/home/myclasses/com/mypackage/MyClass.class\fP.
4632N/A.br
4632N/A.br
4632N/AIf \f3\-d\fP is not specified, \f3javac\fP puts each class files in the same directory as the source file from which it was generated.
4632N/A.br
4632N/A.br
4632N/A\f3Note:\fP The directory specified by \f3\-d\fP is not automatically added to your user class path.
4632N/A.TP 3
4632N/A\-deprecation
4632N/AShow a description of each use or override of a deprecated member or class. Without \f3\-deprecation\fP, \f3javac\fP shows a summary of the source files that use or override deprecated members or classes. \f3\-deprecation\fP is shorthand for \f3\-Xlint:deprecation\fP.
4632N/A.TP 3
4632N/A\-encoding encoding
4632N/ASet the source file encoding name, such as \f2EUC\-JP and UTF\-8\fP. If \f3\-encoding\fP is not specified, the platform default converter is used.
4632N/A.TP 3
4632N/A\-endorseddirs directories
4632N/AOverride the location of endorsed standards path.
4632N/A.TP 3
4632N/A\-extdirs directories
4632N/AOverrides the location of the \f2ext\fP directory. The \f2directories\fP variable is a colon\-separated list of directories. Each JAR archive in the specified directories is searched for class files. All JAR archives found are automatically part of the class path.
4632N/A.br
4632N/A.br
4632N/AIf you are cross\-compiling (compiling classes against bootstrap and extension classes of a different Java platform implementation), this option specifies the directories that contain the extension classes. See Cross\-Compilation Options for more information.
4632N/A.TP 3
4632N/A\-g
4632N/AGenerate all debugging information, including local variables. By default, only line number and source file information is generated.
4632N/A.TP 3
4632N/A\-g:none
4632N/ADo not generate any debugging information.
4632N/A.TP 3
4632N/A\-g:{keyword list}
4632N/AGenerate only some kinds of debugging information, specified by a comma separated list of keywords. Valid keywords are:
4632N/A.RS 3
4632N/A.TP 3
4632N/Asource
4632N/ASource file debugging information
4632N/A.TP 3
4632N/Alines
4632N/ALine number debugging information
4632N/A.TP 3
4632N/Avars
4632N/ALocal variable debugging information
4632N/A.RE
4632N/A.TP 3
4632N/A\-help
4632N/APrint a synopsis of standard options.
4632N/A.TP 3
4632N/A\-implicit:{class,none}
4632N/AControls the generation of class files for implicitly loaded source files. To automatically generate class files, use \f3\-implicit:class\fP. To suppress class file generation, use \f3\-implicit:none\fP. If this option is not specified, the default is to automatically generate class files. In this case, the compiler will issue a warning if any such class files are generated when also doing annotation processing. The warning will not be issued if this option is set explicitly. See Searching For Types.
4632N/A.TP 3
4632N/A\-Joption
4632N/APass \f2option\fP to the \f3java\fP launcher called by \f3javac\fP. For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes. It is a common convention for \f3\-J\fP to pass options to the underlying VM executing applications written in Java.
4632N/A.br
4632N/A.br
4632N/A\f3Note:\fP \f3CLASSPATH\fP, \f3\-classpath\fP, \f3\-bootclasspath\fP, and \f3\-extdirs\fP do \f2not\fP specify the classes used to run \f3javac\fP. Fiddling with the implementation of the compiler in this way is usually pointless and always risky. If you do need to do this, use the \f3\-J\fP option to pass through options to the underlying \f3java\fP launcher.
4632N/A.TP 3
4632N/A\-nowarn
4632N/ADisable warning messages. This has the same meaning as \f3\-Xlint:none\fP.
4632N/A.TP 3
4632N/A\-proc: {none,only}
4632N/AControls whether annotation processing and/or compilation is done. \f3\-proc:none\fP means that compilation takes place without annotation processing. \f3\-proc:only\fP means that only annotation processing is done, without any subsequent compilation.
4632N/A.TP 3
4632N/A\-processor class1[,class2,class3...]
4632N/ANames of the annotation processors to run. This bypasses the default discovery process.
4632N/A.TP 3
4632N/A\-processorpath path
4632N/ASpecify where to find annotation processors; if this option is not used, the class path will be searched for processors.
4632N/A.TP 3
4632N/A\-s dir
4632N/ASpecify the directory where to place generated source files. The directory must already exist; \f3javac\fP will not create it. If a class is part of a package, the compiler puts the source file in a subdirectory reflecting the package name, creating directories as needed. For example, if you specify \f3\-s /home/mysrc\fP and the class is called \f2com.mypackage.MyClass\fP, then the source file will be placed in \f2/home/mysrc/com/mypackage/MyClass.java\fP.
4632N/A.TP 3
4632N/A\-source release
4632N/ASpecifies the version of source code accepted. The following values for \f2release\fP are allowed:
4632N/A.RS 3
4632N/A.TP 3
4632N/A1.3
4632N/AThe compiler does \f2not\fP support assertions, generics, or other language features introduced after JDK 1.3.
4632N/A.TP 3
4632N/A1.4
4632N/AThe compiler accepts code containing assertions, which were introduced in JDK 1.4.
4632N/A.TP 3
4632N/A1.5
4632N/AThe compiler accepts code containing generics and other language features introduced in JDK 5.
4632N/A.TP 3
4632N/A5
4632N/ASynonym for 1.5.
4632N/A.TP 3
4632N/A1.6
4632N/AThis is the default value. No language changes were introduced in Java SE 6. However, encoding errors in source files are now reported as errors, instead of warnings, as previously.
4632N/A.TP 3
4632N/A6
4632N/ASynonym for 1.6.
4632N/A.TP 3
4632N/A1.7
4632N/AThe compiler accepts code with features introduced in JDK 7.
4632N/A.TP 3
4632N/A7
4632N/ASynonym for 1.7.
4632N/A.RE
4632N/A.TP 3
4632N/A\-sourcepath sourcepath
4632N/ASpecify the source code path to search for class or interface definitions. As with the user class path, source path entries are separated by colons (\f3:\fP) and can be directories, JAR archives, or ZIP archives. If packages are used, the local path name within the directory or archive must reflect the package name.
4632N/A.br
4632N/A.br
4632N/A\f3Note:\fP Classes found through the class path may be subject to automatic recompilation if their sources are also found. See Searching For Types.
4632N/A.TP 3
4632N/A\-verbose
4632N/AVerbose output. This includes information about each class loaded and each source file compiled.
4632N/A.TP 3
4632N/A\-version
4632N/APrint version information.
4632N/A.TP 3
4632N/A\-Werror
4632N/ATerminate compilation if warnings occur.
4632N/A.TP 3
4632N/A\-X
4632N/ADisplay information about non\-standard options and exit.
4632N/A.RE
4632N/A
4632N/A.LP
4632N/A.SS
4632N/ACross\-Compilation Options
4632N/A.LP
4632N/A.LP
4632N/ABy default, classes are compiled against the bootstrap and extension classes of the platform that \f3javac\fP shipped with. But \f3javac\fP also supports \f2cross\-compiling\fP, where classes are compiled against a bootstrap and extension classes of a different Java platform implementation. It is important to use \f3\-bootclasspath\fP and \f3\-extdirs\fP when cross\-compiling; see Cross\-Compilation Example below.
4632N/A.LP
4632N/A.RS 3
4632N/A.TP 3
4632N/A\-target version
4632N/AGenerate class files that target a specified version of the VM. Class files will run on the specified target and on later versions, but not on earlier versions of the VM. Valid targets are \f31.1\fP \f31.2\fP \f31.3\fP \f31.4\fP \f31.5\fP (also \f35\fP) \f31.6\fP (also \f36\fP) and \f31.7\fP (also \f37\fP).
4632N/A.br
4632N/A.br
4632N/AThe default for \f3\-target\fP depends on the value of \f3\-source\fP:
4632N/A.RS 3
4632N/A.TP 2
4632N/Ao
4632N/AIf \-source is \f3not specified\fP, the value of \-target is \f31.7\fP
4632N/A.TP 2
4632N/Ao
4632N/AIf \-source is \f31.2\fP, the value of \-target is \f31.4\fP
4632N/A.TP 2
4632N/Ao
4632N/AIf \-source is \f31.3\fP, the value of \-target is \f31.4\fP
4632N/A.TP 2
4632N/Ao
4632N/AFor \f3all other values\fP of \-source, the value of \f3\-target\fP is the value of \f3\-source\fP.
4632N/A.RE
4632N/A.TP 3
4632N/A\-bootclasspath bootclasspath
4632N/ACross\-compile against the specified set of boot classes. As with the user class path, boot class path entries are separated by colons (\f3:\fP) and can be directories, JAR archives, or ZIP archives.
4632N/A.RE
4632N/A
4632N/A.LP
4632N/A.SS
4632N/ANon\-Standard Options
4632N/A.LP
4632N/A.RS 3
4632N/A.TP 3
4632N/A\-Xbootclasspath/p:path
4632N/APrepend to the bootstrap class path.
4632N/A.TP 3
4632N/A\-Xbootclasspath/a:path
4632N/AAppend to the bootstrap class path.
4632N/A.TP 3
4632N/A\-Xbootclasspath/:path
4632N/AOverride location of bootstrap class files.
4632N/A.TP 3
4632N/A\-Xlint
4632N/AEnable all recommended warnings. In this release, enabling all available warnings is recommended.
4632N/A.TP 3
4632N/A\-Xlint:all
4632N/AEnable all recommended warnings. In this release, enabling all available warnings is recommended.
4632N/A.TP 3
4632N/A\-Xlint:none
4632N/ADisable all warnings.
4632N/A.TP 3
4632N/A\-Xlint:name
4632N/AEnable warning \f2name\fP. See the section Warnings That Can Be Enabled or Disabled with \-Xlint Option for a list of warnings you can enable with this option.
4632N/A.TP 3
4632N/A\-Xlint:\-name
4632N/ADisable warning \f2name\fP. See the section Warnings That Can Be Enabled or Disabled with \-Xlint Option for a list of warnings you can disable with this option.
4632N/A.TP 3
4632N/A\-Xmaxerrs number
4632N/ASet the maximum number of errors to print.
4632N/A.TP 3
4632N/A\-Xmaxwarns number
4632N/ASet the maximum number of warnings to print.
4632N/A.TP 3
4632N/A\-Xstdout filename
4632N/ASend compiler messages to the named file. By default, compiler messages go to \f2System.err\fP.
4632N/A.TP 3
4632N/A\-Xprefer:{newer,source}
4632N/ASpecify which file to read when both a source file and class file are found for a type. (See Searching For Types). If \f2\-Xprefer:newer\fP is used, it reads the newer of the source or class file for a type (default). If the \f2\-Xprefer:source\fP option is used, it reads source file. Use \f2\-Xprefer:source\fP when you want to be sure that any annotation processors can access annotations declared with a retention policy of \f2SOURCE\fP.
4632N/A.TP 3
4632N/A\-Xpkginfo:{always,legacy,nonempty}
4632N/ASpecify handling of package\-info files
4632N/A.TP 3
4632N/A\-Xprint
4632N/APrint out textual representation of specified types for debugging purposes; perform neither annotation processing nor compilation. The format of the output may change.
4632N/A.TP 3
4632N/A\-XprintProcessorInfo
4632N/APrint information about which annotations a processor is asked to process.
4632N/A.TP 3
4632N/A\-XprintRounds
4632N/APrint information about initial and subsequent annotation processing rounds.
4632N/A.RE
4632N/A
4632N/A.LP
4632N/A.SS
4632N/AWarnings That Can Be Enabled or Disabled with \-Xlint Option
4632N/A.LP
4632N/A.LP
4632N/AEnable warning \f2name\fP with the option \f3\-Xlint:\fP\f2name\fP, where \f2name\fP is one of the following warning names. Similarly, you can disable warning \f2name\fP with the option \f3\-Xlint:\-\fP\f2name\fP:
4632N/A.LP
4632N/A.RS 3
4632N/A.TP 3
4632N/Acast
4632N/AWarn about unnecessary and redundant casts. For example:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/AString s = (String)"Hello!"
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/A.TP 3
4632N/Aclassfile
4632N/AWarn about issues related to classfile contents.
4632N/A.TP 3
4632N/Adeprecation
4632N/AWarn about use of deprecated items. For example:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A java.util.Date myDate = new java.util.Date();
4632N/A.fl
4632N/A int currentDay = myDate.getDay();
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/AThe method \f2java.util.Date.getDay\fP has been deprecated since JDK 1.1.
4632N/A.TP 3
4632N/Adep\-ann
4632N/AWarn about items that are documented with an \f2@deprecated\fP Javadoc comment, but do not have a \f2@Deprecated\fP annotation. For example:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A /**
4632N/A.fl
4632N/A * @deprecated As of Java SE 7, replaced by {@link #newMethod()}
4632N/A.fl
4632N/A */
4632N/A.fl
4632N/A
4632N/A.fl
4632N/A public static void deprecatedMethood() { }
4632N/A.fl
4632N/A
4632N/A.fl
4632N/A public static void newMethod() { }
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/A.TP 3
4632N/Adivzero
4632N/AWarn about division by constant integer 0. For example:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A int divideByZero = 42 / 0;
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/A.TP 3
4632N/Aempty
4632N/AWarn about empty statements after \f2if\fP statements. For example:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/Aclass E {
4632N/A.fl
4632N/A void m() {
4632N/A.fl
4632N/A if (true) ;
4632N/A.fl
4632N/A }
4632N/A.fl
4632N/A}
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/A.TP 3
4632N/Afallthrough
4632N/ACheck \f2switch\fP blocks for fall\-through cases and provide a warning message for any that are found. Fall\-through cases are cases in a \f2switch\fP block, other than the last case in the block, whose code does not include a \f2break\fP statement, allowing code execution to "fall through" from that case to the next case. For example, the code following the \f2case 1\fP label in this \f2switch\fP block does not end with a \f2break\fP statement:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/Aswitch (x) {
4632N/A.fl
4632N/Acase 1:
4632N/A.fl
4632N/A System.out.println("1");
4632N/A.fl
4632N/A // No break statement here.
4632N/A.fl
4632N/Acase 2:
4632N/A.fl
4632N/A System.out.println("2");
4632N/A.fl
4632N/A}
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/AIf the \f2\-Xlint:fallthrough\fP flag were used when compiling this code, the compiler would emit a warning about "possible fall\-through into case," along with the line number of the case in question.
4632N/A.TP 3
4632N/Afinally
4632N/AWarn about \f2finally\fP clauses that cannot complete normally. For example:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A public static int m() {
4632N/A.fl
4632N/A try {
4632N/A.fl
4632N/A throw new NullPointerException();
4632N/A.fl
4632N/A } catch (NullPointerException e) {
4632N/A.fl
4632N/A System.err.println("Caught NullPointerException.");
4632N/A.fl
4632N/A return 1;
4632N/A.fl
4632N/A } finally {
4632N/A.fl
4632N/A return 0;
4632N/A.fl
4632N/A }
4632N/A.fl
4632N/A }
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/AThe compiler generates a warning for \f2finally\fP block in this example. When this method is called, it returns a value of \f20\fP, not \f21\fP. A \f2finally\fP block always executes when the \f2try\fP block exits. In this example, if control is transferred to the \f2catch\fP, then the method exits. However, the \f2finally\fP block must be executed, so it is executed, even though control has already been transferred outside the method.
4632N/A.TP 3
4632N/Aoptions
4632N/AWarn about issues relating to the use of command line options. See Cross\-Compilation Example for an example of this kind of warning.
4632N/A.TP 3
4632N/Aoverrides
4632N/AWarn about issues regarding method overrides. For example, consider the following two classes:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/Apublic class ClassWithVarargsMethod {
4632N/A.fl
4632N/A void varargsMethod(String... s) { }
4632N/A.fl
4632N/A}
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/Apublic class ClassWithOverridingMethod extends ClassWithVarargsMethod {
4632N/A.fl
4632N/A @Override
4632N/A.fl
4632N/A void varargsMethod(String[] s) { }
4632N/A.fl
4632N/A}
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/AThe compiler generates a warning similar to the following:
4632N/A.br
4632N/A.br
4632N/A\f2warning: [override] varargsMethod(String[]) in ClassWithOverridingMethod overrides varargsMethod(String...) in ClassWithVarargsMethod; overriding method is missing '...'\fP
4632N/A.br
4632N/A.br
4632N/AWhen the compiler encounters a varargs method, it translates the varargs formal parameter into an array. In the method \f2ClassWithVarargsMethod.varargsMethod\fP, the compiler translates the varargs formal parameter \f2String... s\fP to the formal parameter \f2String[] s\fP, an array, which matches the formal parameter of the method \f2ClassWithOverridingMethod.varargsMethod\fP. Consequently, this example compiles.
4632N/A.TP 3
4632N/Apath
4632N/AWarn about invalid path elements and nonexistent path directories on the command line (with regards to the class path, the source path, and other paths). Such warnings cannot be suppressed with the \f2@SuppressWarnings\fP annotation. For example:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/Ajavac \-Xlint:path \-classpath /nonexistentpath Example.java
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/A.TP 3
4632N/Aprocessing
4632N/AWarn about issues regarding annotation processing. The compiler generates this warning if you have a class that has an annotation, and you use an annotation processor that cannot handle that type of exception. For example, the following is a simple annotation processor:
4632N/A.br
4632N/A.br
4632N/A\f3Source file \fP\f4AnnoProc.java\fP:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/Aimport java.util.*;
4632N/A.fl
4632N/Aimport javax.annotation.processing.*;
4632N/A.fl
4632N/Aimport javax.lang.model.*;
4632N/A.fl
4632N/Aimport javax.lang.model.element.*;
4632N/A.fl
4632N/A
4632N/A.fl
4632N/A@SupportedAnnotationTypes("NotAnno")
4632N/A.fl
4632N/Apublic class AnnoProc extends AbstractProcessor {
4632N/A.fl
4632N/A public boolean process(Set<? extends TypeElement> elems, RoundEnvironment renv) {
4632N/A.fl
4632N/A return true;
4632N/A.fl
4632N/A }
4632N/A.fl
4632N/A
4632N/A.fl
4632N/A public SourceVersion getSupportedSourceVersion() {
4632N/A.fl
4632N/A return SourceVersion.latest();
4632N/A.fl
4632N/A }
4632N/A.fl
4632N/A}
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/A\f3Source file \fP\f4AnnosWithoutProcessors.java\fP\f3:\fP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A@interface Anno { }
4632N/A.fl
4632N/A
4632N/A.fl
4632N/A@Anno
4632N/A.fl
4632N/Aclass AnnosWithoutProcessors { }
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/AThe following commands compile the annotation processor \f2AnnoProc\fP, then run this annotation processor against the source file \f2AnnosWithoutProcessors.java\fP:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A% javac AnnoProc.java
4632N/A.fl
4632N/A% javac \-cp . \-Xlint:processing \-processor AnnoProc \-proc:only AnnosWithoutProcessors.java
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/AWhen the compiler runs the annotation processor against the source file \f2AnnosWithoutProcessors.java\fP, it generates the following warning:
4632N/A.br
4632N/A.br
4632N/A\f2warning: [processing] No processor claimed any of these annotations: Anno\fP
4632N/A.br
4632N/A.br
4632N/ATo resolve this issue, you can rename the annotation defined and used in the class \f2AnnosWithoutProcessors\fP from \f2Anno\fP to \f2NotAnno\fP.
4632N/A.TP 3
4632N/Arawtypes
4632N/AWarn about unchecked operations on raw types. The following statement generates a \f2rawtypes\fP warning:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/Avoid countElements(List l) { ... }
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/AThe following does not generate a \f2rawtypes\fP warning:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/Avoid countElements(List<?> l) { ... }
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/A\f2List\fP is a raw type. However, \f2List<?>\fP is a unbounded wildcard parameterized type. Because \f2List\fP is a parameterized interface, you should always specify its type argument. In this example, the \f2List\fP formal argument is specified with a unbounded wildcard (\f2?\fP) as its formal type parameter, which means that the \f2countElements\fP method can accept any instantiation of the \f2List\fP interface.
4632N/A.TP 3
4632N/Aserial
4632N/AWarn about missing \f2serialVersionUID\fP definitions on serializable classes. For example:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/Apublic class PersistentTime implements Serializable
4632N/A.fl
4632N/A{
4632N/A.fl
4632N/A private Date time;
4632N/A.fl
4632N/A
4632N/A.fl
4632N/A public PersistentTime() {
4632N/A.fl
4632N/A time = Calendar.getInstance().getTime();
4632N/A.fl
4632N/A }
4632N/A.fl
4632N/A
4632N/A.fl
4632N/A public Date getTime() {
4632N/A.fl
4632N/A return time;
4632N/A.fl
4632N/A }
4632N/A.fl
4632N/A}
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/AThe compiler generates the following warning:
4632N/A.br
4632N/A.br
4632N/A\f2warning: [serial] serializable class PersistentTime has no definition of serialVersionUID\fP
4632N/A.br
4632N/A.br
4632N/AIf a serializable class does not explicitly declare a field named \f2serialVersionUID\fP, then the serialization runtime will calculate a default \f2serialVersionUID\fP value for that class based on various aspects of the class, as described in the Java Object Serialization Specification. However, it is strongly recommended that all serializable classes explicitly declare \f2serialVersionUID\fP values because the default process of computing \f2serialVersionUID\fP vales is highly sensitive to class details that may vary depending on compiler implementations, and can thus result in unexpected \f2InvalidClassExceptions\fP during deserialization. Therefore, to guarantee a consistent \f2serialVersionUID\fP value across different Java compiler implementations, a serializable class must declare an explicit \f2serialVersionUID\fP value.
4632N/A.TP 3
4632N/Astatic
4632N/AWarn about issues relating to use of statics. For example:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/Aclass XLintStatic {
4632N/A.fl
4632N/A static void m1() { }
4632N/A.fl
4632N/A void m2() { this.m1(); }
4632N/A.fl
4632N/A}
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/AThe compiler generates the following warning:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/Awarning: [static] static method should be qualified by type name, XLintStatic, instead of by an expression
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/ATo resolve this issue, you can call the static method \f2m1\fP as follows:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/AXLintStatic.m1();
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/AAlternatively, you can remove the \f2static\fP keyword from the declaration of the method \f2m1\fP.
4632N/A.TP 3
4632N/Atry
4632N/AWarn about issues relating to use of \f2try\fP blocks, including try\-with\-resources statements. For example, a warning is generated for the following statement because the resource \f2ac\fP declared in the \f2try\fP statement is not used:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/Atry ( AutoCloseable ac = getResource() ) {
4632N/A.fl
4632N/A // do nothing
4632N/A.fl
4632N/A}
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/A.TP 3
4632N/Aunchecked
4632N/AGive more detail for unchecked conversion warnings that are mandated by the Java Language Specification. For example:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A List l = new ArrayList<Number>();
4632N/A.fl
4632N/A List<String> ls = l; // unchecked warning
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/ADuring type erasure, the types \f2ArrayList<Number>\fP and \f2List<String>\fP become \f2ArrayList\fP and \f2List\fP, respectively.
4632N/A.br
4632N/A.br
4632N/AThe variable \f2ls\fP has the parameterized type \f2List<String>\fP. When the \f2List\fP referenced by \f2l\fP is assigned to \f2ls\fP, the compiler generates an unchecked warning; the compiler is unable to determine at compile time, and moreover knows that the JVM will not be able to determine at runtime, if \f2l\fP refers to a \f2List<String>\fP type; it does not. Consequently, heap pollution occurs.
4632N/A.br
4632N/A.br
4632N/AIn detail, a heap pollution situation occurs when the \f2List\fP object \f2l\fP, whose static type is \f2List<Number>\fP, is assigned to another \f2List\fP object, \f2ls\fP, that has a different static type, \f2List<String>\fP. However, the compiler still allows this assignment. It must allow this assignment to preserve backwards compatibility with versions of Java SE that do not support generics. Because of type erasure, \f2List<Number>\fP and \f2List<String>\fP both become \f2List\fP. Consequently, the compiler allows the assignment of the object \f2l\fP, which has a raw type of \f2List\fP, to the object \f2ls\fP.
4632N/A.TP 3
4632N/Avarargs
4632N/AWarn about unsafe usages of variable arguments (varargs) methods, in particular, those that contain non\-reifiable arguments. For example:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/Apublic class ArrayBuilder {
4632N/A.fl
4632N/A public static <T> void addToList (List<T> listArg, T... elements) {
4632N/A.fl
4632N/A for (T x : elements) {
4632N/A.fl
4632N/A listArg.add(x);
4632N/A.fl
4632N/A }
4632N/A.fl
4632N/A }
4632N/A.fl
4632N/A}
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/AThe compiler generates the following warning for the definition of the method \f2ArrayBuilder.addToList\fP:
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/Awarning: [varargs] Possible heap pollution from parameterized vararg type T
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/AWhen the compiler encounters a varargs method, it translates the varargs formal parameter into an array. However, the Java programming language does not permit the creation of arrays of parameterized types. In the method \f2ArrayBuilder.addToList\fP, the compiler translates the varargs formal parameter \f2T... elements\fP to the formal parameter \f2T[] elements\fP, an array. However, because of type erasure, the compiler converts the varargs formal parameter to \f2Object[] elements\fP. Consequently, there is a possibility of heap pollution.
4632N/A.RE
4632N/A
4632N/A.LP
4632N/A.SH "COMMAND LINE ARGUMENT FILES"
4632N/A.LP
4632N/A.LP
4632N/ATo shorten or simplify the javac command line, you can specify one or more files that themselves contain arguments to the \f2javac\fP command (except \f2\-J\fP options). This enables you to create javac commands of any length on any operating system.
4632N/A.LP
4632N/A.LP
4632N/AAn argument file can include javac options and source filenames in any combination. The arguments within a file can be space\-separated or newline\-separated. If a filename contains embedded spaces, put the whole filename in double quotes.
4632N/A.LP
4632N/A.LP
4632N/AFilenames within an argument file are relative to the current directory, not the location of the argument file. Wildcards (*) are not allowed in these lists (such as for specifying \f2*.java\fP). Use of the '\f2@\fP' character to recursively interpret files is not supported. The \f2\-J\fP options are not supported because they are passed to the launcher, which does not support argument files.
4632N/A.LP
4632N/A.LP
4632N/AWhen executing javac, pass in the path and name of each argument file with the '\f2@\fP' leading character. When javac encounters an argument beginning with the character `\f2@\fP', it expands the contents of that file into the argument list.
4632N/A.LP
4632N/A.SS
4632N/AExample \- Single Arg File
4632N/A.LP
4632N/A.LP
4632N/AYou could use a single argument file named "\f2argfile\fP" to hold all javac arguments:
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A% \fP\f3javac @argfile\fP
4632N/A.fl
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.LP
4632N/AThis argument file could contain the contents of both files shown in the next example.
4632N/A.LP
4632N/A.SS
4632N/AExample \- Two Arg Files
4632N/A.LP
4632N/A.LP
4632N/AYou can create two argument files \-\- one for the javac options and the other for the source filenames: (Notice the following lists have no line\-continuation characters.)
4632N/A.LP
4632N/A.LP
4632N/ACreate a file named "\f2options\fP" containing:
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A \-d classes
4632N/A.fl
4632N/A \-g
4632N/A.fl
4632N/A \-sourcepath /java/pubs/ws/1.3/src/share/classes
4632N/A.fl
4632N/A
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.LP
4632N/ACreate a file named "\f2classes\fP" containing:
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A MyClass1.java
4632N/A.fl
4632N/A MyClass2.java
4632N/A.fl
4632N/A MyClass3.java
4632N/A.fl
4632N/A
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.LP
4632N/AYou would then run \f3javac\fP with:
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A % \fP\f3javac @options @classes\fP
4632N/A.fl
4632N/A
4632N/A.fl
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.SS
4632N/AExample \- Arg Files with Paths
4632N/A.LP
4632N/A.LP
4632N/AThe argument files can have paths, but any filenames inside the files are relative to the current working directory (not \f2path1\fP or \f2path2\fP):
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A% \fP\f3javac @path1/options @path2/classes\fP
4632N/A.fl
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.SH "ANNOTATION PROCESSING"
4632N/A.LP
4632N/A.LP
4632N/A\f3javac\fP provides direct support for annotation processing, superseding the need for the separate annotation processing tool, \f3apt\fP.
4632N/A.LP
4632N/A.LP
4632N/AThe API for annotation processors is defined in the \f2javax.annotation.processing\fP and \f2javax.lang.model\fP packages and subpackages.
4632N/A.LP
4632N/A.SS
4632N/AOverview of annotation processing
4632N/A.LP
4632N/A.LP
4632N/AUnless annotation processing is disabled with the \f3\-proc:none\fP option, the compiler searches for any annotation processors that are available. The search path can be specified with the \f3\-processorpath\fP option; if it is not given, the user class path is used. Processors are located by means of service provider\-configuration files named \f2META\-INF/services/javax.annotation.processing.Processor\fP on the search path. Such files should contain the names of any annotation processors to be used, listed one per line. Alternatively, processors can be specified explicitly, using the \f3\-processor\fP option.
4632N/A.LP
4632N/A.LP
4632N/AAfter scanning the source files and classes on the command line to determine what annotations are present, the compiler queries the processors to determine what annotations they process. When a match is found, the processor will be invoked. A processor may "claim" the annotations it processes, in which case no further attempt is made to find any processors for those annotations. Once all annotations have been claimed, the compiler does not look for additional processors.
4632N/A.LP
4632N/A.LP
4632N/AIf any processors generate any new source files, another round of annotation processing will occur: any newly generated source files will be scanned, and the annotations processed as before. Any processors invoked on previous rounds will also be invoked on all subsequent rounds. This continues until no new source files are generated.
4632N/A.LP
4632N/A.LP
4632N/AAfter a round occurs where no new source files are generated, the annotation processors will be invoked one last time, to give them a chance to complete any work they may need to do. Finally, unless the \f3\-proc:only\fP option is used, the compiler will compile the original and all the generated source files.
4632N/A.LP
4632N/A.SS
4632N/AImplicitly loaded source files
4632N/A.LP
4632N/A.LP
4632N/ATo compile a set of source files, the compiler may need to implicitly load additional source files. (See Searching For Types). Such files are currently not subject to annotation processing. By default, the compiler will give a warning if annotation processing has occurred and any implicitly loaded source files are compiled. See the \-implicit option for ways to suppress the warning.
4632N/A.LP
4632N/A.SH "SEARCHING FOR TYPES"
4632N/A.LP
4632N/A.LP
4632N/AWhen compiling a source file, the compiler often needs information about a type whose definition did not appear in the source files given on the command line. The compiler needs type information for every class or interface used, extended, or implemented in the source file. This includes classes and interfaces not explicitly mentioned in the source file but which provide information through inheritance.
4632N/A.LP
4632N/A.LP
4632N/AFor example, when you subclass \f3java.applet.Applet\fP, you are also using \f3Applet's\fP ancestor classes: \f3java.awt.Panel\fP, \f3java.awt.Container\fP, \f3java.awt.Component\fP, and \f3java.lang.Object\fP.
4632N/A.LP
4632N/A.LP
4632N/AWhen the compiler needs type information, it looks for a source file or class file which defines the type. The compiler searches for class files first in the bootstrap and extension classes, then in the user class path (which by default is the current directory). The user class path is defined by setting the \f3CLASSPATH\fP environment variable or by using the \f3\-classpath\fP command line option. (For details, see Setting the Class Path).
4632N/A.LP
4632N/A.LP
4632N/AIf you set the \-sourcepath option, the compiler searches the indicated path for source files; otherwise the compiler searches the user class path for both class files and source files.
4632N/A.LP
4632N/A.LP
4632N/AYou can specify different bootstrap or extension classes with the \f3\-bootclasspath\fP and \f3\-extdirs\fP options; see Cross\-Compilation Options below.
4632N/A.LP
4632N/A.LP
4632N/AA successful type search may produce a class file, a source file, or both. If both are found, you can use the \-Xprefer option to instruct the compiler which to use. If \f3newer\fP is given, the compiler will use the newer of the two files. If \f3source\fP is given, it will use the source file. The default is \f3newer\fP.
4632N/A.LP
4632N/A.LP
4632N/AIf a type search finds a source file for a required type, either by itself, or as a result of the setting for \f3\-Xprefer\fP, the compiler will read the source file to get the information it needs. In addition, it will by default compile the source file as well. You can use the \-implicit option to specify the behavior. If \f3none\fP is given, no class files will be generated for the source file. If \f3class\fP is given, class files will be generated for the source file.
4632N/A.LP
4632N/A.LP
4632N/AThe compiler may not discover the need for some type information until after annotation processing is complete. If the type information is found in a source file and no \f3\-implicit\fP option is given, the compiler will give a warning that the file is being compiled without being subject to annotation processing. To disable the warning, either specify the file on the command line (so that it will be subject to annotation processing) or use the \f3\-implicit\fP option to specify whether or not class files should be generated for such source files.
4632N/A.LP
4632N/A.SH "PROGRAMMATIC INTERFACE"
4632N/A.LP
4632N/A.LP
4632N/A\f3javac\fP supports the new Java Compiler API defined by the classes and interfaces in the \f2javax.tools\fP package.
4632N/A.LP
4632N/A.SS
4632N/AExample
4632N/A.LP
4632N/A.LP
4632N/ATo perform a compilation using arguments as you would give on the command line, you can use the following:
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/AJavaCompiler javac = ToolProvider.getSystemJavaCompiler();
4632N/A.fl
4632N/Aint rc = javac.run(null, null, null, args);
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.LP
4632N/AThis will write any diagnostics to the standard output stream, and return the exit code that \f3javac\fP would give when invoked from the command line.
4632N/A.LP
4632N/A.LP
4632N/AYou can use other methods on the \f2javax.tools.JavaCompiler\fP interface to handle diagnostics, control where files are read from and written to, and so on.
4632N/A.LP
4632N/A.SS
4632N/AOld Interface
4632N/A.LP
4632N/A.LP
4632N/A\f3Note:\fP This API is retained for backwards compatibility only; all new code should use the Java Compiler API, described above.
4632N/A.LP
4632N/A.LP
4632N/AThe \f2com.sun.tools.javac.Main\fP class provides two static methods to invoke the compiler from a program:
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/Apublic static int compile(String[] args);
4632N/A.fl
4632N/Apublic static int compile(String[] args, PrintWriter out);
4632N/A.fl
4632N/A\fP
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.LP
4632N/AThe \f2args\fP parameter represents any of the command line arguments that would normally be passed to the javac program and are outlined in the above Synopsis section.
4632N/A.LP
4632N/A.LP
4632N/AThe \f2out\fP parameter indicates where the compiler's diagnostic output is directed.
4632N/A.LP
4632N/A.LP
4632N/AThe return value is equivalent to the exit value from \f3javac\fP.
4632N/A.LP
4632N/A.LP
4632N/ANote that all \f3other\fP classes and methods found in a package whose name starts with \f2com.sun.tools.javac\fP (informally known as sub\-packages of \f2com.sun.tools.javac\fP) are strictly internal and subject to change at any time.
4632N/A.LP
4632N/A.SH "EXAMPLES"
4632N/A.LP
4632N/A.SS
4632N/ACompiling a Simple Program
4632N/A.LP
4632N/A.LP
4632N/AOne source file, \f2Hello.java\fP, defines a class called \f3greetings.Hello\fP. The \f2greetings\fP directory is the package directory both for the source file and the class file and is off the current directory. This allows us to use the default user class path. It also makes it unnecessary to specify a separate destination directory with \f3\-d\fP.
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A% \fP\f3ls\fP
4632N/A.fl
4632N/Agreetings/
4632N/A.fl
4632N/A% \f3ls greetings\fP
4632N/A.fl
4632N/AHello.java
4632N/A.fl
4632N/A% \f3cat greetings/Hello.java\fP
4632N/A.fl
4632N/Apackage greetings;
4632N/A.fl
4632N/A
4632N/A.fl
4632N/Apublic class Hello {
4632N/A.fl
4632N/A public static void main(String[] args) {
4632N/A.fl
4632N/A for (int i=0; i < args.length; i++) {
4632N/A.fl
4632N/A System.out.println("Hello " + args[i]);
4632N/A.fl
4632N/A }
4632N/A.fl
4632N/A }
4632N/A.fl
4632N/A}
4632N/A.fl
4632N/A% \f3javac greetings/Hello.java\fP
4632N/A.fl
4632N/A% \f3ls greetings\fP
4632N/A.fl
4632N/AHello.class Hello.java
4632N/A.fl
4632N/A% \f3java greetings.Hello World Universe Everyone\fP
4632N/A.fl
4632N/AHello World
4632N/A.fl
4632N/AHello Universe
4632N/A.fl
4632N/AHello Everyone
4632N/A.fl
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.SS
4632N/ACompiling Multiple Source Files
4632N/A.LP
4632N/A.LP
4632N/AThis example compiles all the source files in the package \f2greetings\fP.
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A% \fP\f3ls\fP
4632N/A.fl
4632N/Agreetings/
4632N/A.fl
4632N/A% \f3ls greetings\fP
4632N/A.fl
4632N/AAloha.java GutenTag.java Hello.java Hi.java
4632N/A.fl
4632N/A% \f3javac greetings/*.java\fP
4632N/A.fl
4632N/A% \f3ls greetings\fP
4632N/A.fl
4632N/AAloha.class GutenTag.class Hello.class Hi.class
4632N/A.fl
4632N/AAloha.java GutenTag.java Hello.java Hi.java
4632N/A.fl
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.SS
4632N/ASpecifying a User Class Path
4632N/A.LP
4632N/A.LP
4632N/AHaving changed one of the source files in the previous example, we recompile it:
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A% \fP\f3pwd\fP
4632N/A.fl
4632N/A/examples
4632N/A.fl
4632N/A% \f3javac greetings/Hi.java\fP
4632N/A.fl
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.LP
4632N/ASince \f2greetings.Hi\fP refers to other classes in the \f2greetings\fP package, the compiler needs to find these other classes. The example above works, because our default user class path happens to be the directory containing the package directory. But suppose we want to recompile this file and not worry about which directory we're in? Then we need to add \f2/examples\fP to the user class path. We can do this by setting \f3CLASSPATH\fP, but here we'll use the \f3\-classpath\fP option.
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A% \fP\f3javac \-classpath /examples /examples/greetings/Hi.java\fP
4632N/A.fl
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.LP
4632N/AIf we change \f2greetings.Hi\fP again, to use a banner utility, that utility also needs to be accessible through the user class path.
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A% \fP\f3javac \-classpath /examples:/lib/Banners.jar \\
4632N/A.fl
4632N/A /examples/greetings/Hi.java\fP
4632N/A.fl
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.LP
4632N/ATo execute a class in \f2greetings\fP, we need access both to \f2greetings\fP and to the classes it uses.
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A% \fP\f3java \-classpath /examples:/lib/Banners.jar greetings.Hi\fP
4632N/A.fl
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.SS
4632N/ASeparating Source Files and Class Files
4632N/A.LP
4632N/A.LP
4632N/AIt often makes sense to keep source files and class files in separate directories, especially on large projects. We use \f3\-d\fP to indicate the separate class file destination. Since the source files are not in the user class path, we use \f3\-sourcepath\fP to help the compiler find them.
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A% \fP\f3ls\fP
4632N/A.fl
4632N/Aclasses/ lib/ src/
4632N/A.fl
4632N/A% \f3ls src\fP
4632N/A.fl
4632N/Afarewells/
4632N/A.fl
4632N/A% \f3ls src/farewells\fP
4632N/A.fl
4632N/ABase.java GoodBye.java
4632N/A.fl
4632N/A% \f3ls lib\fP
4632N/A.fl
4632N/ABanners.jar
4632N/A.fl
4632N/A% \f3ls classes\fP
4632N/A.fl
4632N/A% \f3javac \-sourcepath src \-classpath classes:lib/Banners.jar \\
4632N/A.fl
4632N/A src/farewells/GoodBye.java \-d classes\fP
4632N/A.fl
4632N/A% \f3ls classes\fP
4632N/A.fl
4632N/Afarewells/
4632N/A.fl
4632N/A% \f3ls classes/farewells\fP
4632N/A.fl
4632N/ABase.class GoodBye.class
4632N/A.fl
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.LP
4632N/A\f3Note:\fP The compiler compiled \f2src/farewells/Base.java\fP, even though we didn't specify it on the command line. To trace automatic compiles, use the \f3\-verbose\fP option.
4632N/A.LP
4632N/A.SS
4632N/ACross\-Compilation Example
4632N/A.LP
4632N/A.LP
4632N/AHere we use \f3javac\fP to compile code that will run on a 1.6 VM.
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A% \fP\f3javac \-source 1.6 \-target 1.6 \-bootclasspath jdk1.6.0/lib/rt.jar \\
4632N/A.fl
4632N/A \-extdirs "" OldCode.java\fP
4632N/A.fl
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.LP
4632N/AThe \f2\-source 1.6\fP option specifies that version 1.6 (or 6) of the Java programming language be used to compile \f2OldCode.java\fP. The option \f3\-target 1.6\fP option ensures that the generated class files will be compatible with 1.6 VMs. Note that in most cases, the value of the \f3\-target\fP option is the value of the \f3\-source\fP option; in this example, you can omit the \f3\-target\fP option.
4632N/A.LP
4632N/A.LP
4632N/AYou must specify the \f3\-bootclasspath\fP option to specify the correct version of the bootstrap classes (the \f2rt.jar\fP library). If not, the compiler generates a warning:
4632N/A.LP
4632N/A.nf
4632N/A\f3
4632N/A.fl
4632N/A% \fP\f3javac \-source 1.6 OldCode.java\fP
4632N/A.fl
4632N/Awarning: [options] bootstrap class path not set in conjunction with \-source 1.6
4632N/A.fl
4632N/A.fi
4632N/A
4632N/A.LP
4632N/A.LP
4632N/AIf you do not specify the correct version of bootstrap classes, the compiler will use the old language rules (in this example, it will use version 1.6 of the Java programming language) combined with the new bootstrap classes, which can result in class files that do not work on the older platform (in this case, Java SE 6) because reference to non\-existent methods can get included.
4632N/A.LP
4632N/A.SH "SEE ALSO"
4632N/A.LP
4632N/A.RS 3
4632N/A.TP 2
4632N/Ao
4632N/A.na
4632N/A\f2The javac Guide\fP @
4632N/A.fi
4632N/Ahttp://download.oracle.com/javase/7/docs/technotes/guides/javac/index.html
4632N/A.TP 2
4632N/Ao
4632N/Ajava(1) \- the Java Application Launcher
4632N/A.TP 2
4632N/Ao
4632N/Ajdb(1) \- Java Application Debugger
4632N/A.TP 2
4632N/Ao
4632N/Ajavah(1) \- C Header and Stub File Generator
4632N/A.TP 2
4632N/Ao
4632N/Ajavap(1) \- Class File Disassembler
4632N/A.TP 2
4632N/Ao
4632N/Ajavadoc(1) \- API Documentation Generator
4632N/A.TP 2
4632N/Ao
4632N/Ajar(1) \- JAR Archive Tool
4632N/A.TP 2
4632N/Ao
4632N/A.na
4632N/A\f2The Java Extensions Framework\fP @
4632N/A.fi
4632N/Ahttp://download.oracle.com/javase/7/docs/technotes/guides/extensions/index.html
4632N/A.RE
4632N/A
4632N/A.LP
4632N/A