提交 4974ed9d 编写于 作者: L lana

Merge

......@@ -74,3 +74,6 @@ db951e984ccf50756160fee3078c791300b0917e jdk7-b95
b1903d7528d33b521df42bc9291bdcdd2f444a29 jdk7-b97
82593186fa54ab12f17af31f86a7bf364efaf4df jdk7-b98
2587c9f0b60dc3146b4247b8674ada456a643d6f jdk7-b99
820b4e843d5168370a3bf166d19751a3271d8575 jdk7-b100
d58354a69011f3d3354765fa3167567c4c4a9612 jdk7-b101
13029a61b16bec06535d4f0aa98229b358684128 jdk7-b102
#
# Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
# Copyright year for beginning of Java and some of the apis
# (Needed when creating the javadocs)
FIRST_COPYRIGHT_YEAR = 1993
DOMAPI_FIRST_COPYRIGHT_YEAR = 2005
MIRROR_FIRST_COPYRIGHT_YEAR = 2004
DOCLETAPI_FIRST_COPYRIGHT_YEAR = 1993
TAGLETAPI_FIRST_COPYRIGHT_YEAR = 1993
JDI_FIRST_COPYRIGHT_YEAR = 1999
JAAS_FIRST_COPYRIGHT_YEAR = 1998
JGSS_FIRST_COPYRIGHT_YEAR = 2000
SMARTCARDIO_FIRST_COPYRIGHT_YEAR = 2005
HTTPSERVER_FIRST_COPYRIGHT_YEAR = 2005
MGMT_FIRST_COPYRIGHT_YEAR = 2003
ATTACH_FIRST_COPYRIGHT_YEAR = 2005
JCONSOLE_FIRST_COPYRIGHT_YEAR = 2006
SCTPAPI_FIRST_COPYRIGHT_YEAR = 2009
TRACING_FIRST_COPYRIGHT_YEAR = 2008
TREEAPI_FIRST_COPYRIGHT_YEAR = 2005
JNLP_FIRST_COPYRIGHT_YEAR = 1998
PLUGIN2_FIRST_COPYRIGHT_YEAR = 2007
# Oracle name
COMPANY_NAME = Oracle and/or its affiliates
# Copyright address
COMPANY_ADDRESS = 500 Oracle Parkway<br>Redwood Shores, CA 94065 USA.
# The trademark symbol
TRADEMARK = &trade;
# Common copyright lines used
# The word "Copyright" might optionally be a link to the file cpyr.html.
# The first year of copyright may vary or not be available.
# The address to the company might be optional.
COMMA:= ,
EMPTY:=
SPACE:=$(EMPTY) $(EMPTY)
COPYRIGHT_SYMBOL = &\#x00a9;
# Macros to handle the optional empty args.
# (The GNU make 3.78.1 "if" conditional is broken, fixed in GNU make 3.81)
define OptionalCopyrightUrl # url
$(shell \
if [ "$1" != "" ] ; then \
printf "<a href=\"%s\">Copyright</a>" "$1"; \
else \
printf "Copyright"; \
fi)
endef
define OptionalCopyrightFirstYear # year
$(shell \
if [ "$1" != "" ] ; then \
printf "%s," "$1";\
fi)
endef
define OptionalCompanyAddress # address
$(shell \
if [ "$1" != "" ] ; then \
printf "%s" "$1";\
fi)
endef
define CopyrightLine # optionalurl optionalfirstyear optionaladdress
$(call OptionalCopyrightUrl,$1) $(COPYRIGHT_SYMBOL)\
$(call OptionalCopyrightFirstYear,$2) $(COPYRIGHT_YEAR),\
$(COMPANY_NAME).\
$(call OptionalCompanyAddress,$3)\
All rights reserved.
endef
......@@ -230,7 +230,8 @@ endif
# Compilers, SDK, and Visual Studio (MSDEV) [32bit is different from 64bit]
ifeq ($(ARCH_DATA_MODEL), 32)
# Try looking in MSVCDIR or MSVCDir area first (set by vcvars32.bat)
# Try looking in MSVCDIR or MSVCDir area first
# (set by vcvars32.bat for VC .NET, not defined in the VC 2008/2010)
ifdef MSVCDIR
xMSVCDIR :="$(subst \,/,$(MSVCDIR))"
_msvc_dir :=$(call FullPath,$(xMSVCDIR))
......@@ -238,11 +239,6 @@ ifeq ($(ARCH_DATA_MODEL), 32)
ifdef MSVCDir
xMSVCDIR :="$(subst \,/,$(MSVCDir))"
_msvc_dir :=$(call FullPath,$(xMSVCDIR))
else
ifneq ($(_program_files),)
xMSVCDIR :="$(_program_files)/Microsoft Visual Studio .NET 2003/Vc7"
_msvc_dir :=$(call FullPath,$(xMSVCDIR))
endif
endif
endif
# If we still don't have it, look for VSnnCOMNTOOLS (newest first),
......
此差异已折叠。
......@@ -30,6 +30,7 @@
#
JAVA_JAVA_java = \
java/lang/Object.java \
java/lang/AutoCloseable.java \
java/lang/Class.java \
java/lang/Thread.java \
java/lang/Character.java \
......
#
# Copyright (c) 1996, 2005, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 1996, 2010 Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
......@@ -62,6 +62,11 @@ POLICY_BUILD = $(LIBDIR)/security/java.policy
CACERTS_SRC = $(CACERTS_FILE)
CACERTS_BUILD = $(LIBDIR)/security/cacerts
ifndef OPENJDK
BLACKLIST_SRC = $(CLOSED_SHARE_SRC)/lib/security/blacklist
BLACKLIST_BUILD = $(LIBDIR)/security/blacklist
endif
FILES_class = $(FILES_java:%.java=$(CLASSBINDIR)/%.class)
#
......@@ -69,7 +74,11 @@ FILES_class = $(FILES_java:%.java=$(CLASSBINDIR)/%.class)
#
include $(BUILDDIR)/common/Rules.gmk
ifdef OPENJDK
build: properties policy cacerts
else
build: properties policy cacerts blacklist
endif
install: all
......@@ -79,6 +88,8 @@ policy: classes $(POLICY_BUILD)
cacerts: classes $(CACERTS_BUILD)
blacklist: classes $(BLACKLIST_BUILD)
$(PROPS_BUILD): $(PROPS_SRC)
$(install-file)
......@@ -88,9 +99,12 @@ $(POLICY_BUILD): $(POLICY_SRC)
$(CACERTS_BUILD): $(CACERTS_SRC)
$(install-file)
$(BLACKLIST_BUILD): $(BLACKLIST_SRC)
$(install-file)
clean clobber:: .delete.classlist
$(RM) -r $(CLASSBINDIR)/java/security
$(RM) $(PROPS_BUILD) $(POLICY_BUILD) $(CACERTS_BUILD)
$(RM) $(PROPS_BUILD) $(POLICY_BUILD) $(CACERTS_BUILD) $(BLACKLIST_BUILD)
# Additional Rule for building sun.security.util
$(CLASSBINDIR)/%.class: $(SHARE_SRC)/sun/%.java
......
......@@ -46,11 +46,11 @@ nbproject:
$(RM) -r $(DEMODIR)/nbproject
$(MKDIR) -p $(DEMODIR)
( $(CD) $(SHARE_SRC)/demo && $(TAR) -cf - \
`find nbproject $(SCM_DIRS_prune) -o -type f -print` ) | \
`$(FIND) nbproject $(SCM_DIRS_prune) -o -type f -print` ) | \
( $(CD) $(DEMODIR) && $(TAR) -xf - )
ifndef OPENJDK
( $(CD) $(CLOSED_SHARE_SRC)/demo && $(TAR) -cf - \
`find nbproject $(SCM_DIRS_prune) -o -type f -print` ) | \
`$(FIND) nbproject $(SCM_DIRS_prune) -o -type f -print` ) | \
( $(CD) $(DEMODIR) && $(TAR) -xf - )
endif
......
......@@ -150,6 +150,7 @@ OTHER_INCLUDES += \
# Rules
#
CLASSDESTDIR = $(TEMPDIR)/classes
JAVAHFLAGS += -classpath $(CLASSDESTDIR)
include $(BUILDDIR)/common/Mapfile-vers.gmk
......
......@@ -148,6 +148,7 @@ OTHER_INCLUDES += \
# Rules
#
CLASSDESTDIR = $(TEMPDIR)/classes
JAVAHFLAGS += -classpath $(CLASSDESTDIR)
include $(BUILDDIR)/common/Mapfile-vers.gmk
......
......@@ -28,7 +28,6 @@
* combine with an argument list of files and directories, and
* write a list of items to be included in a jar file.
*/
package build.tools.jarreorder;
import java.io.BufferedReader;
......@@ -36,74 +35,68 @@ import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Collections;
import java.util.HashSet;
import java.util.Vector;
import java.io.PrintStream;
import java.io.FileOutputStream;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
public class JarReorder {
// To deal with output
private static PrintStream out;
private final static boolean useTopDir = false;
private PrintStream out;
private static void usage() {
private void usage() {
String help;
help =
"Usage: jar JarReorder [-o <outputfile>] <order_list> <exclude_list> <file> ...\n"
+ " order_list is a file containing names of files to load\n"
+ " in order at the end of a jar file.\n"
+ " exclude_list is a file containing names of files/directories\n"
+ " NOT to be included in a jar file.\n";
if (useTopDir)
help +=
" top_dir is the top of the directory structure to be searched;\n"
+ " the contents of the lists and remaining arguments are\n"
+ " relative to this.\n";
help +=
"\n"
+ "The order_list or exclude_list may be replaced by a \"_\" if no\n"
+ "data is to be provided.\n"
+ "\n"
+ " The remaining arguments are files or directories to be included\n"
+ " in a jar file, from which will be excluded thse entries which\n"
+ " appear in the exclude list.\n";
"Usage: jar JarReorder [-o <outputfile>] <order_list> <exclude_list> <file> ...\n"
+ " order_list is a file containing names of files to load\n"
+ " in order at the end of a jar file unless\n"
+ " excluded in the exclude list.\n"
+ " exclude_list is a file containing names of files/directories\n"
+ " NOT to be included in a jar file.\n"
+ "\n"
+ "The order_list or exclude_list may be replaced by a \"-\" if no\n"
+ "data is to be provided.\n"
+ "\n"
+ " The remaining arguments are files or directories to be included\n"
+ " in a jar file, from which will be excluded those entries which\n"
+ " appear in the exclude list.\n";
System.err.println(help);
System.exit(1);
}
/*
* Create a list of files to be included in a jar file, such that the
* some the files will appear in a specific order, and allowing certain
* Create the file list to be included in a jar file, such that the
* list will appear in a specific order, and allowing certain
* files and directories to be excluded.
*
* Command line arguments are
* Command path arguments are
* - optional -o outputfile
* - name of a file containing a list of files to be included in a jar file.
* - name of a file containing a list of files (or directories) to be
* - name of a file containing a set of files to be included in a jar file.
* - name of a file containing a set of files (or directories) to be
* excluded from the jar file.
* - names of files or directories to be searched for files to include
* in the jar file.
*/
public static void main(String[] args) {
JarReorder jr = new JarReorder();
jr.run(args);
}
private void run(String args[]) {
HashMap filesExcluded = new HashMap();
Vector filesIncluded = new Vector();
int fileArgs;
String topDirName = "";
int arglen = args.length;
int argpos = 0;
// Look for "-o outputfilename" option
if ( arglen > 0 ) {
if ( arglen >= 2 && args[0].equals("-o") ) {
if (arglen > 0) {
if (arglen >= 2 && args[0].equals("-o")) {
try {
out = new PrintStream(new FileOutputStream(args[1]));
} catch ( FileNotFoundException e ) {
} catch (FileNotFoundException e) {
System.err.println("Error: " + e.getMessage());
e.printStackTrace(System.err);
System.exit(1);
......@@ -118,128 +111,111 @@ public class JarReorder {
out = System.out;
}
fileArgs = useTopDir ? 3 : 2;
if (arglen <= fileArgs) {
// Should be 2 or more args left
if (arglen <= 2) {
usage();
System.exit(1);
}
// Read the ordered list of files to be included in rt.jar.
// Read the list of files/directories to be excluded from rt.jar.
// Read the ordered set of files to be included in rt.jar.
// Read the set of files/directories to be excluded from rt.jar.
String classListFile = args[argpos];
String excludeListFile = args[argpos + 1];
argpos += 2;
arglen -= 2;
Vector orderList = readListFromFile(args[argpos], true);
Vector excludeList = readListFromFile(args[argpos+1], false);
if (useTopDir) {
topDirName = args[argpos+2];
if (!topDirName.endsWith(File.separator))
topDirName = topDirName + File.separator;
}
// Create 2 lists and a set of processed files
List<String> orderList = readListFromFile(classListFile, true);
List<String> excludeList = readListFromFile(excludeListFile, false);
Set<String> processed = new HashSet<String>();
// Copy these lists into filesExcluded so that these files will be excluded
// from the file list. (The orderList files will be appended later.)
// Create set of all files and directories excluded, then expand
// that list completely
Set<String> excludeSet = new HashSet<String>(excludeList);
Set<String> allFilesExcluded = expand(null, excludeSet, processed);
for (int i = 0; i < orderList.size(); ++i) {
String s = (String) orderList.elementAt(i);
filesExcluded.put(s, s);
}
for (int i = 0; i < excludeList.size(); ++i) {
String s = (String) excludeList.elementAt(i);
filesExcluded.put(s, s);
}
// Indicate all these have been processed, orderList too, kept to end.
processed.addAll(orderList);
// The remaining arguments are names of files/directories to be included
// in the jar file.
String[] files = new String[arglen - fileArgs];
for (int i = fileArgs; i < arglen; ++i) {
files[i-fileArgs] = args[argpos+i];
filesExcluded.put(args[argpos+i], args[argpos+i]);
Set<String> inputSet = new HashSet<String>();
for (int i = 0; i < arglen; ++i) {
String name = args[argpos + i];
name = cleanPath(new File(name));
if ( name != null && name.length() > 0 && !inputSet.contains(name) ) {
inputSet.add(name);
}
}
// Expand file/directory list to file list excluding those
// read from the class list.
// Expand file/directory input so we get a complete set (except ordered)
// Should be everything not excluded and not in order list.
Set<String> allFilesIncluded = expand(null, inputSet, processed);
if (useTopDir)
expand(new File(topDirName), files, filesIncluded, filesExcluded, topDirName);
else
expand(null, files, filesIncluded, filesExcluded, null);
// Create simple sorted list so we can add ordered items at end.
List<String> allFiles = new ArrayList<String>(allFilesIncluded);
Collections.sort(allFiles);
// Now add the ordered list to the end of the expanded list.
// Now add the ordered set to the end of the list.
// Add in REVERSE ORDER, so that the first element is closest to
// the end (and the index).
HashSet excludeSet = new HashSet(excludeList);
for (int i = orderList.size() - 1; i >= 0; --i) {
String s = (String) orderList.elementAt(i);
if (excludeSet.contains(s)) {
System.err.println("Included file " + s + " is also excluded, skipping.");
continue;
String s = orderList.get(i);
if (allFilesExcluded.contains(s)) {
System.err.println("Included order file " + s
+ " is also excluded, skipping.");
} else if (new File(s).exists()) {
allFiles.add(s);
} else {
System.err.println("Included order file " + s
+ " missing, skipping.");
}
if (new File(topDirName + s).exists())
filesIncluded.addElement(s);
else
System.err.println("Included file "+s+" missing, skipping.");
}
// Print results.
for (int i = 0; i < filesIncluded.size(); ++i) {
if (useTopDir) {
out.print("-C ");
out.print(topDirName);
out.print(" ");
}
out.println((String)filesIncluded.elementAt(i));
// Print final results.
for (String str : allFiles) {
out.println(str);
}
out.flush();
out.close();
}
/*
* Read a file containing a list of files into a Vector.
* Read a file containing a list of files and directories into a List.
*/
private static Vector readListFromFile(String fileName,
boolean addClassSuffix) {
private List<String> readListFromFile(String fileName,
boolean addClassSuffix) {
BufferedReader br = null;
Vector v = new Vector(2000);
if ("-".equals(fileName))
return v;
List<String> list = new ArrayList<String>();
// If you see "-" for the name, just assume nothing was provided.
if ("-".equals(fileName)) {
return list;
}
try {
br = new BufferedReader(new FileReader(fileName));
// Read the input file a line at a time. # in column 1 is a comment.
// Read the input file a path at a time. # in column 1 is a comment.
while (true) {
String line = null;
line = br.readLine();
if (line == null)
String path = br.readLine();
if (path == null) {
break;
if (line.length() == 0 ||
line.charAt(0) == '#')
}
// Look for comments
path = path.trim();
if (path.length() == 0
|| path.charAt(0) == '#') {
continue;
// Convert forward or back slashes to the type expected for
// the current platform.
if (File.separatorChar == '/')
line = line.replace('\\', '/');
else
line = line.replace('/', '\\');
line = line.trim();
if (addClassSuffix) {
if (!line.endsWith(".class")) {
line = line + ".class";
}
}
v.addElement(line);
// Add trailing .class if necessary
if (addClassSuffix && !path.endsWith(".class")) {
path = path + ".class";
}
// Normalize the path
path = cleanPath(new File(path));
// Add to list
if (path != null && path.length() > 0 && !list.contains(path)) {
list.add(path);
}
}
br.close();
} catch (FileNotFoundException e) {
......@@ -249,68 +225,89 @@ public class JarReorder {
e.printStackTrace();
System.exit(2);
}
return v;
return list;
}
/*
* Expands list of files to process into full list of all files that
* Expands inputSet (files or dirs) into full set of all files that
* can be found by recursively descending directories.
* @param dir root directory
* @param inputSet set of files or dirs to look into
* @param processed files or dirs already processed
* @return set of files
*/
private static void expand(File dir, String[] files,
Vector includedFiles, HashMap excludedFiles,
String topDirName) {
if (files == null) {
return;
private Set<String> expand(File dir,
Set<String> inputSet,
Set<String> processed) {
Set<String> includedFiles = new HashSet<String>();
if (inputSet.isEmpty()) {
return includedFiles;
}
for (int i = 0; i < files.length; i++) {
File f = (dir == null) ? new File(files[i])
: new File(dir, files[i]);
if (f.isFile()) {
String filePath = f.getPath();
if (useTopDir) {
if (filePath.startsWith(topDirName))
filePath = filePath.substring(topDirName.length());
}
if (filePath.length() >= 2 &&
filePath.charAt(0) == '.' &&
filePath.charAt(1) == File.separatorChar)
filePath = filePath.substring(2);
if (!excludedFiles.containsKey(filePath)) {
excludedFiles.put(filePath, filePath);
includedFiles.addElement(filePath);
}
} else if (f.isDirectory()) {
String dirPath = f.getPath();
dirPath = (dirPath.endsWith(File.separator)) ? dirPath :
(dirPath + File.separator);
if (useTopDir) {
if (dirPath.startsWith(topDirName))
dirPath = dirPath.substring(topDirName.length());
for (String name : inputSet) {
// Depending on start location
File f = (dir == null) ? new File(name)
: new File(dir, name);
// Normalized path to use
String path = cleanPath(f);
if (path != null && path.length() > 0
&& !processed.contains(path)) {
if (f.isFile()) {
// Not in the excludeList, add it to both lists
includedFiles.add(path);
processed.add(path);
} else if (f.isDirectory()) {
// Add the directory entries
String[] dirList = f.list();
Set<String> dirInputSet = new HashSet<String>();
for (String x : dirList) {
dirInputSet.add(x);
}
// Process all entries in this directory
Set<String> subList = expand(f, dirInputSet, processed);
includedFiles.addAll(subList);
processed.add(path);
}
}
}
return includedFiles;
}
if (dirPath.length() >= 2 &&
dirPath.charAt(0) == '.' &&
dirPath.charAt(1) == File.separatorChar)
dirPath = dirPath.substring(2);
if (!excludedFiles.containsKey(dirPath)) {
private String cleanPath(File f) {
String path = f.getPath();
if (f.isFile()) {
path = cleanFilePath(path);
} else if (f.isDirectory()) {
path = cleanDirPath(path);
} else {
System.err.println("WARNING: Path does not exist as file or directory: " + path);
path = null;
}
return path;
}
// Sort the directory list so that entries in the jar file
// are in a repeatable order. The order itself is not particularly
// important. [File.list() is unpredictable.]
private String cleanFilePath(String path) {
// Remove leading and trailing whitespace
path = path.trim();
// Make all / and \ chars one
if (File.separatorChar == '/') {
path = path.replace('\\', '/');
} else {
path = path.replace('/', '\\');
}
// Remove leading ./
if (path.startsWith("." + File.separator)) {
path = path.substring(2);
}
return path;
}
String[] dirList = f.list();
Arrays.sort(dirList);
expand(f, dirList, includedFiles, excludedFiles, topDirName);
}
} else {
System.err.println("Error accessing: " + f.getPath());
}
private String cleanDirPath(String path) {
path = cleanFilePath(path);
// Make sure it ends with a file separator
if (!path.endsWith(File.separator)) {
path = path + File.separator;
}
return path;
}
}
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1995, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,12 +19,11 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH appletviewer 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH appletviewer 1 "02 Jun 2010"
.LP
.SH "Name"
appletviewer \- The Java Applet Viewer
appletviewer \- The Java Applet Viewer.
.LP
.RS 3
......@@ -74,6 +73,4 @@ Passes through the string \f2javaoption\fP as a single argument to the Java inte
.LP
.LP
.LP
." Copyright 2004-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH apt 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH apt 1 "02 Jun 2010"
.LP
.SH "NAME"
......@@ -124,6 +123,4 @@ javac(1), java(1)
.RE
.LP
.LP
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH extcheck 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH extcheck 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -83,6 +82,4 @@ Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the
.LP
jar(1)
.LP
.LP
." Copyright 2001-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH idlj 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH idlj 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -508,6 +507,4 @@ No import generated for global identifiers. If you invoke on an unexported local
.RE
.LP
.LP
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1995, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH appletviewer 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH appletviewer 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -74,6 +73,4 @@ Java デバッガ jdb(1) でアプレットビューアを開始します。 こ
.LP
.LP
.LP
." Copyright Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH apt 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH apt 1 "02 Jun 2010"
.LP
.SH "NAME"
......
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH extcheck 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH extcheck 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -83,6 +82,4 @@ Java 仮想マシンに \f2option\fP を渡します。 \f2option\fP には、ja
.LP
jar(1)
.LP
.LP
." Copyright 2001-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH idlj 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH idlj 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -507,6 +506,4 @@ o
.RE
.LP
.LP
." Copyright 2004-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jar 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jar 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -205,7 +204,7 @@ jar ファイルから個別のファイルを抽出する場合は、そのフ
.LP
.LP
Java 2 SDK のバージョン 1.3 以降から、\f2jar\fP ユーティリティーで
JDK のバージョン 1.3 以降から、\f2jar\fP ユーティリティーで
.na
\f2JarIndex\fP @
.fi
......@@ -717,6 +716,4 @@ http://java.sun.com/docs/books/tutorial/jar (Java Software の Web サイト内)
.br
.LP
pack200(1)
.LP
pack200(1)
." Copyright 2004-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jarsigner 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jarsigner 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -504,7 +503,7 @@ o
.nr 44 \n(83+(3*\n(38)
.nr 84 +\n(44
.nr TW \n(84
.if t .if \n(TW>\n(.li .tm Table at line 186 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 185 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -1616,6 +1615,4 @@ http://java.sun.com/docs/books/tutorial/security/index.htmlを参照
.RE
.LP
.LP
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH java 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH java 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -315,19 +314,19 @@ JAR ファイルの場合は通常、バージョン要件をコマンド行に
バックグラウンドコンパイルを無効にします。通常、VM では、バックグラウンドコンパイルが終了するまで、メソッドをバックグラウンドタスクとしてコンパイルし、インタプリタモードでメソッドを実行します。\f2\-Xbatch\fP フラグを指定すると、バックグラウンドコンパイルが無効になり、すべてのメソッドのコンパイルが完了するまでフォアグラウンドタスクとして処理されます。
.TP 3
\-Xbootclasspath:bootclasspath
ブートクラスファイルを探すディレクトリ、JAR アーカイブ、および ZIP アーカイブをコロンで区切ったリストで指定します。指定したパスに存在するブートクラスファイルが、Java 2 SDK に含まれるブートクラスファイルの代わりに使用されます。\f2注: rt.jar 内のクラスをオーバーライドする目的でこのオプションを使用するアプリケーションは、システムに配置しないでください。Java 2 Runtime Environment バイナリコードライセンス違反になります。\fP
ブートクラスファイルを探すディレクトリ、JAR アーカイブ、および ZIP アーカイブをコロンで区切ったリストで指定します。指定したパスに存在するブートクラスファイルが、JDK に含まれるブートクラスファイルの代わりに使用されます。\f2注: rt.jar 内のクラスをオーバーライドする目的でこのオプションを使用するアプリケーションは、システムに配置しないでください。Java Runtime Environment バイナリコードライセンス違反になります。\fP
.TP 3
\-Xbootclasspath/a:path
ディレクトリ、JAR アーカイブ、および ZIP アーカイブのパスをコロンで区切って指定します。 パスはデフォルトのブートストラップクラスパスのあとに追加されます。
.TP 3
\-Xbootclasspath/p:path
ディレクトリ、JAR アーカイブ、および ZIP アーカイブのパスをコロンで区切って指定します。 パスはデフォルトのブートストラップクラスパスの前に追加されます。\f2注 rt.jar 内のクラスをオーバーライドする目的でこのオプションを使用するアプリケーションは、システムに配置しないでください。Java 2 Runtime Environment バイナリコードライセンス違反になります。\fP
ディレクトリ、JAR アーカイブ、および ZIP アーカイブのパスをコロンで区切って指定します。 パスはデフォルトのブートストラップクラスパスの前に追加されます。\f2注 rt.jar 内のクラスをオーバーライドする目的でこのオプションを使用するアプリケーションは、システムに配置しないでください。Java Runtime Environment バイナリコードライセンス違反になります。\fP
.TP 3
\-Xcheck:jni
Java Native Interface (JNI) 機能に対して追加チェックを行います。具体的には、Java 仮想マシンは JNI 要求を処理する前に、JNI 関数に渡されるパラメータと、実行環境のデータを検証します。無効なデータが見つかった場合は、ネイティブコードに問題があることを示しているため、Java 仮想マシンは致命的エラーを発生して終了します。このオプションを使用すると、パフォーマンス低下が予想されます。
.TP 3
\-Xfuture
クラスとファイルの形式を厳密にチェックします。下位互換性を保つため、Java 2 SDK の仮想マシンが実行するデフォルトの形式チェックは、JDK ソフトウェアのバージョン 1.1.x が実行するチェックと同程度の厳密さになっています。\f3\-Xfuture\fP フラグを指定すると、クラスファイル形式の仕様への準拠を強化するためのより厳密なチェックが有効になります。Java アプリケーション起動ツールの将来のリリースでは、より厳密なチェックがデフォルトになるため、新しいコードを開発するときにはこのフラグを使用することをお勧めします。
クラスとファイルの形式を厳密にチェックします。下位互換性を保つため、JDK の仮想マシンが実行するデフォルトの形式チェックは、JDK ソフトウェアのバージョン 1.1.x が実行するチェックと同程度の厳密さになっています。\f3\-Xfuture\fP フラグを指定すると、クラスファイル形式の仕様への準拠を強化するためのより厳密なチェックが有効になります。Java アプリケーション起動ツールの将来のリリースでは、より厳密なチェックがデフォルトになるため、新しいコードを開発するときにはこのフラグを使用することをお勧めします。
.TP 3
\-Xnoclassgc
クラスのガベージコレクションを無効にします。このオプションを使用すると、ロード済みクラスからメモリーが回復されることがなくなるため、全体的なメモリー使用量が増大します。この場合、アプリケーションによっては OutOfMemoryError がスローされる可能性があります。
......@@ -503,6 +502,4 @@ http://java.sun.com/docs/hotspot/VMOptions.html
.RE
.LP
.LP
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH javac 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH javac 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -960,6 +959,4 @@ http://java.sun.com/javase/6/docs/technotes/guides/extensions/index.html
.RE
.LP
.LP
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH javadoc 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH javadoc 1 "02 Jun 2010"
.SH "名前"
javadoc \- Java API ドキュメントジェネレータ
.RS 3
......@@ -395,7 +394,7 @@ package java.lang.applet;
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 353 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 352 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -529,7 +528,7 @@ initialize, start, and stop the applet.
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 406 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 405 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -1374,7 +1373,7 @@ http://java.sun.com/j2se/javadoc/proposed\-tags.htmlを参照してください
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 1125 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 1124 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -2309,7 +2308,7 @@ equals
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 1861 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 1860 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -2677,7 +2676,7 @@ Javadoc ツールは、必ずしもサブクラスを検索するとは限りま
.nr 42 \n(81+(3*\n(38)
.nr 82 +\n(42
.nr TW \n(82
.if t .if \n(TW>\n(.li .tm Table at line 1959 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 1958 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -3180,7 +3179,7 @@ http://java.sun.com/j2se/javadoc/writingdoccomments/index.html#@versionを参照
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 2280 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 2279 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -3301,7 +3300,7 @@ http://java.sun.com/j2se/javadoc/writingdoccomments/index.html#@versionを参照
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 2316 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 2315 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -3440,7 +3439,7 @@ http://java.sun.com/j2se/javadoc/writingdoccomments/index.html#@versionを参照
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 2356 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 2355 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -3619,7 +3618,7 @@ class Window extends BaseWindow {
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 2437 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 2436 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -3785,7 +3784,7 @@ class Window extends BaseWindow {
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 2504 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 2503 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -4102,7 +4101,7 @@ javadoc ツールは、ドックレットを使って出力を決定します。
.nr 42 \n(81+(3*\n(38)
.nr 82 +\n(42
.nr TW \n(82
.if t .if \n(TW>\n(.li .tm Table at line 2681 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 2680 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -4365,7 +4364,7 @@ Javadoc は、JDK 1.3 以降に導入されたアサーション、総称、ま
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 2791 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 2790 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -5831,5 +5830,4 @@ http://java.sun.com/javase/6/docs/technotes/tools/findingclasses.html#srcfiles (
.RE
.LP
.LP
javadoc は、Sun Microsystems, Inc の商標です (\f2javadoc\fP コマンド自体には商標シンボルは不要)
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH javah 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH javah 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -156,6 +155,4 @@ CLASSPATH
.LP
javac(1)、java(1)、jdb(1)、javap(1)、javadoc(1)
.LP
.LP
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH javap 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH javap 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -359,6 +358,4 @@ CLASSPATH
.LP
javac(1)、 java(1)、jdb(1)、javah(1)、javadoc(1)
.LP
.LP
." Copyright Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,16 +19,11 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH javaws 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.LP
.TH javaws 1 "02 Jun 2010"
.LP
.SH "名前"
\f2javaws\fP コマンド行
.LP
.LP
.LP
\
......
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jconsole 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jconsole 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -160,6 +159,4 @@ http://java.sun.com/javase/6/docs/technotes/guides/management/index.html
.RE
.LP
.LP
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1995, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jdb 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jdb 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -364,6 +363,4 @@ http://java.sun.com/javase/6/docs/technotes/guides/jpda/conninv.htmlを参照し
.LP
javac(1)、java(1)、javah(1)、javap(1)、javadoc(1)
.LP
.LP
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jhat 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jhat 1 "02 Jun 2010"
.LP
.SH "名前"
......
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jinfo 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jinfo 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -164,6 +163,4 @@ jsadebugd(1)
.RE
.LP
.LP
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jmap 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jmap 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -196,6 +195,4 @@ jsadebugd(1)
.RE
.LP
.LP
." Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jps 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jps 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -292,6 +291,4 @@ o
.RE
.LP
.LP
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jrunscript 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jrunscript 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -220,6 +219,4 @@ test.js が実行対象となるスクリプトファイルであり、arg1、ar
.LP
JavaScript が使用される場合、jrunscript は、最初のユーザー定義スクリプトを評価する前に、いくつかの組み込み関数や組み込みオブジェクトを初期化します。これらの JavaScript 組み込み機能については、jsdocs を参照してください。
.LP
.LP
." Copyright 2004 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jsadebugd 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jsadebugd 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -147,6 +146,4 @@ http://java.sun.com/javase/6/docs/technotes/tools/index.html#rmi
.RE
.LP
.LP
." Copyright 2004 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jstack 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jstack 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -189,6 +188,4 @@ jsadebugd(1)
.LP
混合モードのスタックトレース (\-m オプション使用) は、リモートデバッグサーバーでは機能しません。
.LP
.LP
." Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jstat 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jstat 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -487,7 +486,7 @@ HotSpot コンパイル方法の統計データ
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 260 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 259 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -887,7 +886,7 @@ statOption と出力
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 314 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 313 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -1170,7 +1169,7 @@ statOption と出力
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 350 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 349 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -1634,7 +1633,7 @@ Permanent 領域の使用率 (KB)
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 420 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 419 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -2258,7 +2257,7 @@ Permanent 領域の現在の容量 (KB)
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 494 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 493 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -2638,7 +2637,7 @@ Permanent 領域の現在の容量 (KB)
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 517 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 516 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -2954,7 +2953,7 @@ Eden 領域の使用率 (KB)
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 571 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 570 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -3409,7 +3408,7 @@ Eden 領域の現在の容量 (KB)
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 627 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 626 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -3805,7 +3804,7 @@ Old 領域の使用率 (KB)
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 669 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 668 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -4150,7 +4149,7 @@ Old 領域の現在の容量 (KB)
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 711 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 710 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -4495,7 +4494,7 @@ Permanent 領域の現在の容量 (KB)
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 753 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 752 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -4880,7 +4879,7 @@ Permanent 領域の使用率 (現在の容量に対するパーセンテージ)
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 803 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 802 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -5179,7 +5178,7 @@ Permanent 領域の使用率 (現在の容量に対するパーセンテージ)
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 829 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 828 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -5462,6 +5461,4 @@ o
.RE
.LP
.LP
." Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jstatd 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jstatd 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -298,6 +297,4 @@ http://java.sun.com/javase/6/docs/technotes/tools/index.html#rmi \- Java リモ
.RE
.LP
.LP
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH keytool 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH keytool 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -1643,6 +1642,4 @@ http://java.sun.com/j2se/1.5.0/docs/tooldocs/solaris/keytool.html#selfcertCmd
.RE
.LP
.LP
'\" t
.\"
.\" Copyright 2002-2004 Sun Microsystems, Inc. All Rights Reserved.
.\" DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
.\"
.\" This code is free software; you can redistribute it and/or modify it
.\" under the terms of the GNU General Public License version 2 only, as
.\" published by the Free Software Foundation.
.\"
.\" This code is distributed in the hope that it will be useful, but WITHOUT
.\" ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
.\" FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
.\" version 2 for more details (a copy is included in the LICENSE file that
.\" accompanied this code).
.\"
.\" You should have received a copy of the GNU General Public License version
.\" 2 along with this work; if not, write to the Free Software Foundation,
.\" Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
.\"
.\" Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
.\" or visit www.oracle.com if you need additional information or have any
.\" questions.
.\"
.\"
.\"
.TH kinit 1 "2004 年 6 月 22 日"
.SH "名前"
kinit \- kinit は Kerberos チケット許可チケットを取得およびキャッシュ
するときに使用します。このツールはほかの一般的な Kerberos 実装
(SEAM や MIT のリファレンス実装など) の kinit ツールと機能的に似ています。
.LP
kinit を使用するためには、kinit を実行する前に Key Distribution Center
(KDC) を使用してプリンシパルとして登録する必要があります。
.SH "形式"
.B kinit
[
.IR commands " ]"
<principal name>
.SH "機能説明"
デフォルトでは、UNIX プラットフォームの場合、/tmp/krb5cc_<uid> という
名前のキャッシュファイルが生成されます。<uid> は、システムにログイン
したユーザのユーザ識別番号です。その他のプラットフォームの場合、
<USER_HOME>/krb5cc_<USER_NAME> という名前のキャッシュファイル
が生成されます。
.LP
<USER_HOME> は
.BR java.lang.System
プロパティの
.BR user.home
から取得されます。<USER_NAME> は
.BR java.lang.System
プロパティの
.BR user.name
から取得されます。<USER_HOME> が null である場合、
キャッシュファイルはプログラムを実行した現在のディレクトリに格納され
ます。<USER_NAME> はオペレーティングシステムのログインユーザ名
です。このユーザ名はユーザのプリンシパル名とは異なる場合があります。
たとえば Solaris では、<USER_NAME> が duke であり、<USER_HOME>
が /home/duke である場合、ユーザのプリンシパル名は /home/duke/krb5cc_duke
になります。
.LP
デフォルトでは、キータブ名は Kerberos 構成ファイルから取得されます。
キータブ名が Kerberos 構成ファイルに指定されていない場合、キータブ名は <USER_HOME>/krb5.keytab になります。
.LP
コマンド行の password オプションでパスワードを指定しない場合、
kinit はパスワードの入力を求めます。
.LP
.B 注:
コマンド行の password オプションはテストの目的だけに提供されます。
パスワードをスクリプト内に指定したり、コマンド行に指定したりしないで
ください。そうすることによって、パスワードが漏れる可能性があります。
.LP
詳細については、kinit 関連のマニュアルページを参照してください。
.SH "コマンド"
.B kinit \-fp
[
\-c <cache_name> ]
[
\-k ]
[
\-t <keytab_filename> ]
[
<principal> ]
[
<password> ]
[
\-help ]
.TP
.BI \-f
転送可能なチケットを発行します。
.TP
.BI \-p
プロキシ可能なチケットを発行します。
.TP
.BI \-c
<cache_name>
キャッシュ名 (たとえば、FILE:/temp/mykrb5cc)。
.TP
.BI \-k
キータブを使用します。
.TP
.BI \-t
<keytab_filename>
キータブ名 (たとえば、/home/duke/krb5.keytab)。
.TP
.BI <principal>
プリンシパル名 (たとえば、duke@java.sun.com)。
.TP
.BI <password>
プリンシパルの Kerberos パスワード (コマンド行やスクリプトにパスワード
を指定しないでください)。
.TP
.BI \-help
ヘルプを表示します。
.SH "使用例"
認証に有効な資格を現在のクライアントホストから要求して、
デフォルトサービスのために資格のキャッシュをデフォルトの場所
(/home/duke/krb5cc_duke) に格納します。
.LP
.ft 3
.nf
kinit duke@JAVA.SUN.COM
.fi
.ft 1
.LP
異なるプリンシパルのためにプロキシ可能な資格を要求して、これらの資格を
指定したファイルキャッシュに格納します。
.LP
.ft 3
.nf
kinit \-p \-c FILE:/home/duke/credentials/krb5cc_cafebeef cafebeef@JAVA.SUN.COM
.fi
.ft 1
.LP
異なるプリンシパルのためにプロキシ可能で転送可能な資格を要求して、
これらの資格を指定したファイルキャッシュに格納します。
.LP
.ft 3
.nf
kinit \-f \-p \-c
FILE:/home/duke/credentials/krb5cc_cafebeef cafebeef@JAVA.SUN.COM
.fi
.ft 1
.LP
kinit のヘルプメニューを表示します。
.LP
.ft 3
.nf
kinit \-help
.fi
.ft 1
.LP
.SH "セキュリティに関する警告"
コマンド行の
.BR password
オプションはテストの目的だけに提供されます。パスワードをコマンド行に指定しないでください。
これはセキュリティホールになります。たとえば、UNIX の
.BR ps
コマンドの実行中に、攻撃者はパスワードを検出することができてしまいます。
'\" t
.\"
.\" Copyright 2002-2004 Sun Microsystems, Inc. All Rights Reserved.
.\" DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
.\"
.\" This code is free software; you can redistribute it and/or modify it
.\" under the terms of the GNU General Public License version 2 only, as
.\" published by the Free Software Foundation.
.\"
.\" This code is distributed in the hope that it will be useful, but WITHOUT
.\" ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
.\" FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
.\" version 2 for more details (a copy is included in the LICENSE file that
.\" accompanied this code).
.\"
.\" You should have received a copy of the GNU General Public License version
.\" 2 along with this work; if not, write to the Free Software Foundation,
.\" Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
.\"
.\" Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
.\" or visit www.oracle.com if you need additional information or have any
.\" questions.
.\"
.\"
.TH klist 1 "2004 年 6 月 22 日"
.SH "名前"
klist \- Kerberos クレデンシャルキャッシュとキータブ内のエントリを表示します。
.LP
.BR klist
を使用すると、ユーザはローカルにあるクレデンシャルキャッシュと
キーテーブル内のエントリを表示できます。
.SH "形式"
.B klist
[
.IR commands " ]"
.SH "機能説明"
.BR klist
はローカルにあるクレデンシャルキャッシュとキーテーブル内のエントリを表示します。
ユーザが
.BR kinit
を使用してクレデンシャルキャッシュを変更したり、
.BR ktab
を使用してキータブを変更した後、変更を確認する唯一の方法は、
.BR klist
を使用してクレデンシャルキャッシュまたはキータブの内容を表示することです。
.BR klist
は Kerberos データベースを変更しません。
.SH "コマンド"
.B klist
[
\-c [\-fe]]
[
\-k [\-tK]]
[
<name>]
[
\-help ]
.TP
.BI \-c
表示したいクレデンシャルキャッシュのエントリを指定します。
.TP
.BI \-k
表示したいキータブのエントリを指定します。
.TP
.BI <cache_name>
クレデンシャルキャッシュ名またはキータブ名を指定します。名前を指定しない場合、
クレデンシャルキャッシュ名またはキータブのデフォルト値が使用されます。
キャッシュとキータブのデフォルト値については、
.BR kinit
のマニュアルページを参照してください。
.LP
\-c オプションを指定した場合、クレデンシャルキャッシュ用のオプションは次のとおりです。
.TP
.BI \-f
クレデンシャルフラグを表示します。
.TP
.BI \-e
暗号化タイプを表示します。
.LP
\-k オプションを指定した場合、キータブ用のオプションは次のとおりです。
.TP
.BI \-t
キータブエントリのタイムスタンプを表示します。
.TP
.BI \-K
キータブエントリの DES キーを表示します。
.LP
.TP
.BI \-help
ヘルプを表示します。
.SH "使用例"
指定したキーテーブルのエントリと、そのタイムスタンプと DES キー
を表示します。
.LP
.ft 3
.nf
klist \-k \-t \-K FILE:/temp/mykrb5cc
.fi
.ft 1
.LP
指定したクレデンシャルキャッシュのエントリと、そのクレデンシャルフラグとアドレスリストを
表示します。
.LP
.ft 3
.nf
klist \-c \-f FILE:/temp/mykrb5cc
.fi
.ft 1
.LP
'\" t
.\"
.\" Copyright 2002-2004 Sun Microsystems, Inc. All Rights Reserved.
.\" DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
.\"
.\" This code is free software; you can redistribute it and/or modify it
.\" under the terms of the GNU General Public License version 2 only, as
.\" published by the Free Software Foundation.
.\"
.\" This code is distributed in the hope that it will be useful, but WITHOUT
.\" ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
.\" FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
.\" version 2 for more details (a copy is included in the LICENSE file that
.\" accompanied this code).
.\"
.\" You should have received a copy of the GNU General Public License version
.\" 2 along with this work; if not, write to the Free Software Foundation,
.\" Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
.\"
.\" Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
.\" or visit www.oracle.com if you need additional information or have any
.\" questions.
.\"
.\"
.TH ktab 1 "2004 年 6 月 22 日"
.SH "名前"
ktab \- Kerberos キーテーブルマネージャ
.LP
.BR ktab
を使用すると、ユーザはローカルにあるキーテーブルに格納された
プリンシパル名とサービスキーを管理できます。キータブ内のプリンシパル
とキーペアは、ホスト上で動作しているサービスに、それら自身を
Key Distribution Center (KDC) に認証させます。サーバが Kerberos を
使用できるように設定するには、その前にユーザはサーバが動作している
ホスト上でキータブを設定する必要があります。ktab を使用してキータブ
を変更しても、Kerberos データベースには影響しないことに注意してくださ
い。キータブ内のキーを変更した場合、Kerberos データベース内の対応する
箇所も変更する必要があります。
.SH "形式"
.B ktab
[
.IR commands " ]"
.SH "機能説明"
.BR ktab
は、キーテーブル内のプリンシパル名とキーペアを管理します。
.BR ktab
を使用すると、ユーザはキーテーブル内のプリンシパル名とキーペアを
一覧表示、追加、更新、または削除できます。これらの操作はすべて、
Kerberos データベースには影響しません。
.LP
.ft 3
.B キータブ
.LP
キータブとは、ホストが持つ自分自身のキーリストのコピーであり、ユーザ
のパスワードと似ています。自分自身を Key Distribution Center (KDC)
に認証させる必要があるアプリケーションサーバは、それ自身のプリンシパル
とキーを含むキータブを持っている必要があります。ユーザが自分の
パスワードを保護することが大切であるのと同様に、ホストは自分のキータブ
を保護することが大切です。キータブファイルは常にローカルディスクに
格納して、root 以外のユーザが読めないように設定しておく必要があります。
キータブファイルは暗号化せずにネットワークへ送信しないでください。
.SH "コマンド"
使用法: コマンド行オプションでは大文字と小文字は区別しません。
.LP
.B ktab
\-help
.LP
.B ktab
\-l [\-k <keytab_name>]
.LP
.B ktab
[\-a <principal_name> <password>] [\-k <keytab_name>]
.LP
.B ktab
[\-d <principal_name>] [\-k <keytab_name>]
.LP
.TP
.BI \-l
キータブ名とエントリを一覧表示します。
.TP
.BI \-a
<principal_name> <password>
エントリをキータブに追加します。Kerberos データベースは変更しません
(コマンド行やスクリプトにパスワードを指定しないでください)。
.TP
.BI \-d
<principal_name>
キータブからエントリを削除します。Kerberos データベースは変更しません。
.TP
.BI \-k
<keytab_name>
キータブ名と、接頭辞 FILE: で始まるパスを指定します。
.TP
.BI \-help
ヘルプを表示します。
.SH "使用例"
デフォルトのキーテーブル内のエントリをすべて表示します。
.LP
.ft 3
.nf
ktab \-l
.fi
.ft 1
.LP
新しいプリンシパルをキーテーブルに追加します。パスワードの入力が求められます。
.LP
.ft 3
.nf
ktab \-a duke@java.sun.com
.fi
.ft 1
.LP
キーテーブルからプリンシパルを削除します。
.LP
.ft 3
.nf
ktab \-d duke@java.sun.com
.fi
.ft 1
.LP
.SH "セキュリティに関する警告"
パスワードをコマンド行に指定しないでください。これはセキュリティホール
になります。たとえば、UNIX の
.BI ps
コマンドの実行中に、攻撃者はパスワードを検出することができてしまいます。
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH native2ascii 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH native2ascii 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -78,6 +77,4 @@ Java 仮想マシンに \f2option\fP を渡します。 \f2option\fP には、ja
.RE
.LP
.LP
." Copyright 2001-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH orbd 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH orbd 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -374,6 +373,4 @@ servertool(1)
.br
.LP
.LP
." Copyright Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH pack200 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH pack200 1 "02 Jun 2010"
.LP
.SH "名前"
......
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH policytool 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH policytool 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -105,6 +104,4 @@ http://java.sun.com/javase/6/docs/technotes/guides/security/overview/jsoverview.
.RE
.LP
.LP
." Copyright 2004-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH rmic 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH rmic 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -265,6 +264,4 @@ java(1)、javac(1)、
.fi
http://java.sun.com/javase/6/docs/technotes/tools/index.html#classpath
.LP
.LP
." Copyright 2004-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH rmid 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH rmid 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -354,6 +353,4 @@ rmic(1)、
.fi
http://java.sun.com/javase/6/docs/technotes/tools/index.html#classpath、java(1)
.LP
.LP
." Copyright 2003-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH rmiregistry 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH rmiregistry 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -94,6 +93,4 @@ http://java.sun.com/javase/6/docs/api/java/rmi/registry/LocateRegistry.html、
.fi
http://java.sun.com/javase/6/docs/api/java/rmi/Naming.html
.LP
.LP
." Copyright Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH schemagen 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH schemagen 1 "02 Jun 2010"
.LP
.SH "名前"
......
." Copyright 2005-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH serialver 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH serialver 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -121,6 +120,4 @@ Java 仮想マシンに \f2option\fP を渡します。 \f2option\fP には、ja
.fi
http://java.sun.com/javase/6/docs/api/java/io/ObjectStreamClass.html
.LP
.LP
." Copyright 2001-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH servertool 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH servertool 1 "02 Jun 2010"
.LP
.SH "名前"
......@@ -125,6 +124,4 @@ quit
.LP
.LP
orbd(1)
.LP
orbd(1)
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,14 +19,11 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH tnameserv 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH tnameserv 1 "02 Jun 2010"
.LP
.SH "名前"
Java IDL:一時ネームサービス \- \f2tnameserv\fP
.LP
.LP
.LP
このドキュメントでは、Java IDL 一時ネームサービス \f2tnameserv\fP の使用方法について説明します。Java IDL には、Object Request Broker Daemon (ORBD) も含まれています。ORBD は、ブートストラップサービス、一時ネームサービス、\f3持続\fPネームサービス、およびサーバーマネージャーを含むデーモンプロセスです。Java IDL のすべてのチュートリアルでは ORBD を使用していますが、一時ネームサービスを使用する例では、\f2orbd\fP の代わりに \f2tnameserv\fP を使用できます。\f2orbd\fP ツールの詳細については、\f2orbd\fP の orbd(1)または
......@@ -499,6 +496,4 @@ bindings[i].binding_name[lastIx].id);
.fi
.LP
.LP
." Copyright Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH unpack200 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH unpack200 1 "02 Jun 2010"
.LP
.SH "名前"
......
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH wsgen 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH wsgen 1 "02 Jun 2010"
.SH "名前"
wsgen \- XML Web Services (JAX\-WS) 2.0 のための Java(TM) API
.RS 3
......@@ -387,7 +386,7 @@ wsgen [options] <SEI>\fP
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 144 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 143 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH wsimport 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH wsimport 1 "02 Jun 2010"
.SH "名前"
wsimport \- XML Web Services (JAX\-WS) 2.0 のための Java(TM) API
.LP
......@@ -467,7 +466,7 @@ wsimport 出力を抑制します
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 164 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 163 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH xjc 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH xjc 1 "02 Jun 2010"
.LP
.ad c
......
." Copyright 2004-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jar 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jar 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -183,7 +182,7 @@ To extract individual files from a jar file, supply their filenames:
.LP
.LP
Beginning with version 1.3 of the Java 2 SDK, the \f2jar\fP utility supports
Beginning with version 1.3 of the JDK, the \f2jar\fP utility supports
.na
\f2JarIndex\fP @
.fi
......@@ -695,6 +694,4 @@ http://java.sun.com/docs/books/tutorial/jar on the Java Software web site.
.br
.LP
pack200(1)
.LP
pack200(1)
." Copyright 2004-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jarsigner 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jarsigner 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -246,12 +245,12 @@ o
DSA (Digital Signature Algorithm) with the SHA\-1 digest algorithm, or
.TP 2
o
the RSA algorithm with the SHA\-1 digest algorithm.
the RSA algorithm with the SHA\-256 digest algorithm.
.RE
.LP
.LP
That is, if the signer's public and private keys are DSA keys, \f3jarsigner\fP will sign the JAR file using the "SHA1withDSA" algorithm. If the signer's keys are RSA keys, \f3jarsigner\fP will attempt to sign the JAR file using the "SHA1withRSA" algorithm.
That is, if the signer's public and private keys are DSA keys, \f3jarsigner\fP will sign the JAR file using the "SHA1withDSA" algorithm. If the signer's keys are RSA keys, \f3jarsigner\fP will attempt to sign the JAR file using the "SHA256withRSA" algorithm.
.LP
.LP
These default signature algorithms can be overridden using the \f2\-sigalg\fP option.
......@@ -541,7 +540,7 @@ See
.na
\f2Appendix A\fP @
.fi
http://java.sun.com/javase/6/docs/technotes/guides/security/crypto/CryptoSpec.html#AppA of the Java Cryptography Architecture for a list of standard signature algorithm names. This algorithm must be compatible with the private key used to sign the JAR file. If this option is not specified, SHA1withDSA or SHA1withRSA will be used depending on the type of private key. There must either be a statically installed provider supplying an implementation of the specified algorithm or the user must specify one with the \f2\-providerClass\fP option, otherwise the command will not succeed.
http://java.sun.com/javase/6/docs/technotes/guides/security/crypto/CryptoSpec.html#AppA of the Java Cryptography Architecture for a list of standard signature algorithm names. This algorithm must be compatible with the private key used to sign the JAR file. If this option is not specified, SHA1withDSA or SHA256withRSA will be used depending on the type of private key. There must either be a statically installed provider supplying an implementation of the specified algorithm or the user must specify one with the \f2\-providerClass\fP option, otherwise the command will not succeed.
.LP
.RE
.TP 3
......@@ -553,7 +552,7 @@ See
.na
\f2Appendix A\fP @
.fi
http://java.sun.com/javase/6/docs/technotes/guides/security/crypto/CryptoSpec.html#AppA of the Java Cryptography Architecture for a list of standard message digest algorithm names. If this option is not specified, SHA\-1 will be used. There must either be a statically installed provider supplying an implementation of the specified algorithm or the user must specify one with the \f2\-providerClass\fP option, otherwise the command will not succeed.
http://java.sun.com/javase/6/docs/technotes/guides/security/crypto/CryptoSpec.html#AppA of the Java Cryptography Architecture for a list of standard message digest algorithm names. If this option is not specified, SHA\-256 will be used. There must either be a statically installed provider supplying an implementation of the specified algorithm or the user must specify one with the \f2\-providerClass\fP option, otherwise the command will not succeed.
.LP
.RE
.TP 3
......@@ -1391,7 +1390,7 @@ Default privileges granted to all code plus privileges granted in policy file. (
.nr 44 \n(83+(3*\n(38)
.nr 84 +\n(44
.nr TW \n(84
.if t .if \n(TW>\n(.li .tm Table at line 1129 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 1128 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -1614,8 +1613,6 @@ http://java.sun.com/docs/books/tutorial/security/index.html trail of the
http://java.sun.com/docs/books/tutorial/index.html for examples of the use of the \f3jarsigner\fP tool
.RE
.LP
.LP
.RE
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH java 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH java 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -299,19 +298,19 @@ Operate in interpreted\-only mode. Compilation to native code is disabled, and a
Disable background compilation. Normally the VM will compile the method as a background task, running the method in interpreter mode until the background compilation is finished. The \f2\-Xbatch\fP flag disables background compilation so that compilation of all methods proceeds as a foreground task until completed.
.TP 3
\-Xbootclasspath:bootclasspath
Specify a colon\-separated list of directories, JAR archives, and ZIP archives to search for boot class files. These are used in place of the boot class files included in the Java 2 SDK. \f2Note: Applications that use this option for the purpose of overriding a class in rt.jar should not be deployed as doing so would contravene the Java 2 Runtime Environment binary code license.\fP
Specify a colon\-separated list of directories, JAR archives, and ZIP archives to search for boot class files. These are used in place of the boot class files included in the Java platform JDK. \f2Note: Applications that use this option for the purpose of overriding a class in rt.jar should not be deployed as doing so would contravene the Java Runtime Environment binary code license.\fP
.TP 3
\-Xbootclasspath/a:path
Specify a colon\-separated path of directires, JAR archives, and ZIP archives to append to the default bootstrap class path.
.TP 3
\-Xbootclasspath/p:path
Specify a colon\-separated path of directires, JAR archives, and ZIP archives to prepend in front of the default bootstrap class path. \f2Note: Applications that use this option for the purpose of overriding a class in rt.jar should not be deployed as doing so would contravene the Java 2 Runtime Environment binary code license.\fP
Specify a colon\-separated path of directires, JAR archives, and ZIP archives to prepend in front of the default bootstrap class path. \f2Note: Applications that use this option for the purpose of overriding a class in rt.jar should not be deployed as doing so would contravene the Java Runtime Environment binary code license.\fP
.TP 3
\-Xcheck:jni
Perform additional checks for Java Native Interface (JNI) functions. Specifically, the Java Virtual Machine validates the parameters passed to the JNI function as well as the runtime environment data before processing the JNI request. Any invalid data encountered indicates a problem in the native code, and the Java Virtual Machine will terminate with a fatal error in such cases. Expect a performance degradation when this option is used.
.TP 3
\-Xfuture
Perform strict class\-file format checks. For purposes of backwards compatibility, the default format checks performed by the Java 2 SDK's virtual machine are no stricter than the checks performed by 1.1.x versions of the JDK software. The \f3\-Xfuture\fP flag turns on stricter class\-file format checks that enforce closer conformance to the class\-file format specification. Developers are encouraged to use this flag when developing new code because the stricter checks will become the default in future releases of the Java application launcher.
Perform strict class\-file format checks. For purposes of backwards compatibility, the default format checks performed by the JDK's virtual machine are no stricter than the checks performed by 1.1.x versions of the JDK software. The \f3\-Xfuture\fP flag turns on stricter class\-file format checks that enforce closer conformance to the class\-file format specification. Developers are encouraged to use this flag when developing new code because the stricter checks will become the default in future releases of the Java application launcher.
.TP 3
\-Xnoclassgc
Disable class garbage collection. Use of this option will prevent memory recovery from loaded classes thus increasing overall memory usage. This could cause OutOfMemoryError to be thrown in some applications.
......@@ -487,6 +486,4 @@ http://java.sun.com/docs/hotspot/VMOptions.html.
.RE
.LP
.LP
." Copyright 2000-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH javac 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH javac 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -938,6 +937,4 @@ http://java.sun.com/javase/6/docs/technotes/guides/extensions/index.html
.RE
.LP
.LP
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH javadoc 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH javadoc 1 "02 Jun 2010"
.SH "Name"
javadoc \- The Java API Documentation Generator
.RS 3
......@@ -395,7 +394,7 @@ package java.lang.applet;
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 353 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 352 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -529,7 +528,7 @@ initialize, start, and stop the applet.
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 406 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 405 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -1351,7 +1350,7 @@ The current tags are:
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 1123 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 1122 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -2080,7 +2079,7 @@ Of course the advantage of providing shorter, "partially\-qualified" names is th
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 1666 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 1665 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -2426,7 +2425,7 @@ Use \-noqualifier to globally remove the package names.
.nr 42 \n(81+(3*\n(38)
.nr 82 +\n(42
.nr TW \n(82
.if t .if \n(TW>\n(.li .tm Table at line 1742 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 1741 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -2829,7 +2828,7 @@ Overview tags are tags that can appear in the documentation comment for the over
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 1963 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 1962 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -2946,7 +2945,7 @@ Package tags are tags that can appear in the documentation comment for a package
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 1995 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 1994 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -3065,7 +3064,7 @@ The following are tags that can appear in the documentation comment for a class
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 2029 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 2028 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -3225,7 +3224,7 @@ The following are the tags that can appear in the documentation comment for a fi
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 2104 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 2103 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -3369,7 +3368,7 @@ The following are the tags that can appear in the documentation comment for a co
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 2163 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 2162 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -3674,7 +3673,7 @@ The options are:
.nr 42 \n(81+(3*\n(38)
.nr 82 +\n(42
.nr TW \n(82
.if t .if \n(TW>\n(.li .tm Table at line 2341 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 2340 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -3937,7 +3936,7 @@ javadoc does \f2not\fP support assertions, generics, or other language features
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 2451 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 2450 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -5421,10 +5420,54 @@ o
http://java.sun.com/javase/6/docs/technotes/tools/findingclasses.html#srcfiles (tools.jar)
.RE
.LP
.LP
.LP
Javadoc is a trademark of Sun Microsystems, Inc. (The \f2javadoc\fP command itself does not require the trademark symbol.)
.TS
.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
.de 35
.ps \n(.s
.vs \n(.vu
.in \n(.iu
.if \n(.u .fi
.if \n(.j .ad
.if \n(.j=0 .na
..
.nf
.nr #~ 0
.if n .nr #~ 0.6n
.ds #d .d
.if \(ts\n(.z\(ts\(ts .ds #d nl
.fc
.nr 33 \n(.s
.rm 80
.nr 80 0
.80
.rm 80
.nr 38 1n
.nr 79 0
.nr 40 \n(79+(0*\n(38)
.nr 80 +\n(40
.nr TW \n(80
.if t .if \n(TW>\n(.li .tm Table at line 3869 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
.eo
.de T#
.ds #d .d
.if \(ts\n(.z\(ts\(ts .ds #d nl
.mk ##
.nr ## -1v
.ls 1
.ls
..
.ec
.fc
.nr T. 1
.T# 1
.35
.TE
.if \n-(b.=0 .nr c. \n(.c-\n(d.-3
.LP
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH javah 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH javah 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -156,6 +155,4 @@ Used to provide the system a path to user\-defined classes. Directories are sepa
.LP
javac(1), java(1), jdb(1), javap(1), javadoc(1)
.LP
.LP
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH javap 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH javap 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -356,6 +355,4 @@ Used to provide the system a path to user\-defined classes. Directories are sepa
.LP
javac(1), java(1), jdb(1), javah(1), javadoc(1)
.LP
.LP
." Copyright 2003-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,16 +19,11 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH javaws 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.LP
.TH javaws 1 "02 Jun 2010"
.LP
.SH "Name"
\f2javaws\fP Command Line
.LP
.LP
.LP
\
......@@ -360,6 +355,4 @@ http://java.sun.com/javase/6/docs/technotes/guides/javaws/index.html.
.LP
.RE
.RE
.LP
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jconsole 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jconsole 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -141,6 +140,4 @@ http://java.sun.com/javase/6/docs/technotes/guides/management/index.html
.RE
.LP
.LP
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1995, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jdb 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jdb 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -364,6 +363,4 @@ Non\-standard target VM option
.LP
javac(1), java(1), javah(1), javap(1), javadoc(1).
.LP
.LP
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jhat 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jhat 1 "02 Jun 2010"
.LP
.SH "Name"
......
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jinfo 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jinfo 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -148,6 +147,4 @@ jsadebugd(1)
.RE
.LP
.LP
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jmap 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jmap 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -168,6 +167,4 @@ jsadebugd(1)
.RE
.LP
.LP
." Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jps 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jps 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -264,6 +263,4 @@ rmiregistry(1) \- the Java Remote Object Registry
.RE
.LP
.LP
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jrunscript 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jrunscript 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -195,6 +194,4 @@ test.js is script file to execute and arg1, arg2 and arg3 are passed to script a
.LP
If JavaScript is used, then before evaluating any user defined script, jrunscript initializes certain built\-in functions and objects. These JavaScript built\-ins are documented in jsdocs.
.LP
.LP
." Copyright 2004 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jsadebugd 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jsadebugd 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -134,6 +133,4 @@ http://java.sun.com/javase/6/docs/technotes/tools/index.html#rmi
.RE
.LP
.LP
." Copyright 2004 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jstack 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jstack 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -160,6 +159,4 @@ jsadebugd(1)
.LP
Mixed mode stack trace, the \-m option, does not work with the remote debug server.
.LP
.LP
." Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jstat 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jstat 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -458,7 +457,7 @@ HotSpot compilation method statistics.
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 231 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 230 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -826,7 +825,7 @@ Time spent performing class load and unload operations.
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 281 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 280 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -1083,7 +1082,7 @@ Class name and method for the last failed compilation.
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 317 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 316 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -1547,7 +1546,7 @@ Total garbage collection time.
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 387 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 386 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -2171,7 +2170,7 @@ Number of Young generation GC Events.
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 461 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 460 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -2551,7 +2550,7 @@ Cause of current Garbage Collection.
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 484 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 483 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -2867,7 +2866,7 @@ Young generation garbage collection time.
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 538 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 537 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -3322,7 +3321,7 @@ Number of young generation GC events.
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 594 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 593 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -3718,7 +3717,7 @@ Total garbage collection time.
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 636 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 635 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -4063,7 +4062,7 @@ Total garbage collection time.
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 678 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 677 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -4408,7 +4407,7 @@ Total garbage collection time.
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 720 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 719 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -4793,7 +4792,7 @@ Total garbage collection time.
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 770 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 769 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -5092,7 +5091,7 @@ Class name and method name identifying the compiled method. Class name uses "/"
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 796 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 795 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -5375,6 +5374,4 @@ rmiregistry(1) \- the Java Remote Object Registry
.RE
.LP
.LP
." Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH jstatd 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH jstatd 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -269,6 +268,4 @@ http://java.sun.com/javase/6/docs/technotes/tools/index.html#rmi \- the Java Rem
.RE
.LP
.LP
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH keytool 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH keytool 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -150,7 +149,9 @@ Below are the defaults for various option values.
.fl
\-keysize
.fl
1024 (when using \fP\f3\-genkeypair\fP\f3)
2048 (when using \fP\f3\-genkeypair\fP\f3 and \-keyalg is "RSA")
.fl
1024 (when using \fP\f3\-genkeypair\fP\f3 and \-keyalg is "DSA")
.fl
56 (when using \fP\f3\-genseckey\fP\f3 and \-keyalg is "DES")
.fl
......@@ -186,7 +187,7 @@ Below are the defaults for various option values.
.fi
.LP
In generating a public/private key pair, the signature algorithm (\f2\-sigalg\fP option) is derived from the algorithm of the underlying private key: If the underlying private key is of type "DSA", the \f2\-sigalg\fP option defaults to "SHA1withDSA", and if the underlying private key is of type "RSA", \f2\-sigalg\fP defaults to "SHA1withRSA". Please consult the
In generating a public/private key pair, the signature algorithm (\f2\-sigalg\fP option) is derived from the algorithm of the underlying private key: If the underlying private key is of type "DSA", the \f2\-sigalg\fP option defaults to "SHA1withDSA", and if the underlying private key is of type "RSA", \f2\-sigalg\fP defaults to "SHA256withRSA". Please consult the
.na
\f2Java Cryptography Architecture API Specification & Reference\fP @
.fi
......@@ -477,7 +478,7 @@ same as SubjectInfoAccess. method can be "ocsp","caIssuers" or any OID.
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 288 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 289 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......@@ -664,6 +665,9 @@ If, besides the \-ext honored option, another named or OID \-ext option is provi
.LP
The subjectKeyIdentifier extension is always created. For non self\-signed certificates, the authorityKeyIdentifier is always created.
.LP
.LP
\f3Note:\fP Users should be aware that some combinations of extensions (and other certificate fields) may not conform to the Internet standard. See Warning Regarding Certificate Conformance for details.
.LP
.RE
.RE
.RE
......@@ -679,12 +683,14 @@ Creating or Adding Data to the Keystore
.LP
.RS 3
.TP 3
\-gencert {\-infile infile} {\-outfile outfile} {\-ext ext}* {\-rfc} {\-alias alias} {\-sigalg sigalg} {\-validity valDays} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] [\-keypass keypass] {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
\-gencert {\-infile infile} {\-outfile outfile} {\-dname dname} {\-ext ext}* {\-rfc} {\-alias alias} {\-sigalg sigalg} {\-validity valDays} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] [\-keypass keypass] {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
.LP
Generates a certificate as a response to a certificate request file (which can be created by the \f2keytool \-certreq\fP command). The command reads the request from infile (if omitted, from the standard input), signs it using alias's private key, and output the X.509 certificate into outfile (if omitted, to the standard output). If \f2\-rfc\fP is specified, output format is BASE64\-encoded PEM; otherwise, a binary DER is created.
.LP
\f2sigalg\fP specifies the algorithm that should be used to sign the certificate. valDays tells the number of days for which the certificate should be considered valid.
.LP
If \f2dname\fP is provided, it's used as the subject of the generated certificate. Otherwise, the one from the certificate request is used.
.LP
\f2ext\fP shows what X.509 extensions will be embedded in the certificate. Read Common Options for the grammar of \f2\-ext\fP.
.TP 3
\-genkeypair {\-alias alias} {\-keyalg keyalg} {\-keysize keysize} {\-sigalg sigalg} [\-dname dname] [\-keypass keypass] {\-startdate value} {\-validity valDays} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
......@@ -845,13 +851,13 @@ Exporting Data
.LP
.RS 3
.TP 3
\-certreq {\-alias alias} {\-sigalg sigalg} {\-file certreq_file} [\-keypass keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
\-certreq {\-alias alias} {\-dname dname} {\-sigalg sigalg} {\-file certreq_file} [\-keypass keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
.LP
Generates a Certificate Signing Request (CSR), using the PKCS#10 format.
.LP
A CSR is intended to be sent to a certificate authority (CA). The CA will authenticate the certificate requestor (usually off\-line) and will return a certificate or certificate chain, used to replace the existing certificate chain (which initially consists of a self\-signed certificate) in the keystore.
.LP
The private key and X.500 Distinguished Name associated with \f2alias\fP are used to create the PKCS#10 certificate request. In order to access the private key, the appropriate password must be provided, since private keys are protected in the keystore with a password. If \f2keypass\fP is not provided at the command line, and is different from the password used to protect the integrity of the keystore, the user is prompted for it.
The private key associated with \f2alias\fP is used to create the PKCS#10 certificate request. In order to access the private key, the appropriate password must be provided, since private keys are protected in the keystore with a password. If \f2keypass\fP is not provided at the command line, and is different from the password used to protect the integrity of the keystore, the user is prompted for it. If dname is provided, it's used as the subject in the CSR. Otherwise, the X.500 Distinguished Name associated with alias is used.
.LP
\f2sigalg\fP specifies the algorithm that should be used to sign the CSR.
.LP
......@@ -2068,6 +2074,10 @@ View it first (using the \f2\-printcert\fP command, or the \f2\-importcert\fP co
MD5: 11:81:AD:92:C8:E5:0E:A2:01:2E:D4:7A:D7:5F:07:6F
.fl
SHA1: 20:B6:17:FA:EF:E5:55:8A:D0:71:1F:E8:D6:9D:C0:37:13:0E:5E:FE
.fl
SHA256: 90:7B:70:0A:EA:DC:16:79:92:99:41:FF:8A:FE:EB:90:
.fl
17:75:E0:90:B2:24:4D:3A:2A:16:A6:E4:11:0F:67:A4
.fl
\fP
.fi
......@@ -2094,6 +2104,20 @@ Passwords can be specified on the command line (in the \f2\-storepass\fP and \f2
If you don't specify a required password option on a command line, you will be prompted for it.
.LP
.RE
.SS
Warning Regarding Certificate Conformance
.LP
.RS 3
.LP
.LP
The Internet standard
.na
\f2RFC 5280\fP @
.fi
http://tools.ietf.org/rfc/rfc5280.txt has defined a profile on conforming X.509 certificates, which includes what values and value combinations are valid for certificate fields and extensions. \f3keytool\fP has not enforced all these rules so it can generate certificates which do not conform to the standard, and these certificates might be rejected by JRE or other applications. Users should make sure that they provide the correct options for \f2\-dname\fP, \f2\-ext\fP, etc.
.LP
.RE
.SH "SEE ALSO"
.LP
......@@ -2176,6 +2200,4 @@ http://java.sun.com/j2se/1.5.0/docs/tooldocs/solaris/keytool.html#selfcertCmd
.RE
.LP
.LP
." Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH native2ascii 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH native2ascii 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -78,6 +77,4 @@ Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the
.RE
.LP
.LP
." Copyright 2001-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH orbd 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH orbd 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -374,6 +373,4 @@ servertool(1)
.br
.LP
.LP
." Copyright 2004-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH pack200 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH pack200 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -422,6 +421,4 @@ This command should not be confused with \f2pack(1)\fP. They are distinctly sepa
.LP
The Java SE API Specification provided with the JDK is the superseding authority, in case of discrepancies.
.LP
.LP
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH policytool 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH policytool 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -89,6 +88,4 @@ http://java.sun.com/javase/6/docs/technotes/guides/security/overview/jsoverview.
.RE
.LP
.LP
." Copyright 2004-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH rmic 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH rmic 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -266,6 +265,4 @@ java(1), javac(1),
.fi
http://java.sun.com/javase/6/docs/technotes/tools/index.html#classpath
.LP
.LP
." Copyright 2004-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH rmid 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH rmid 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -348,6 +347,4 @@ rmic(1),
.fi
http://java.sun.com/javase/6/docs/technotes/tools/index.html#classpath, java(1)
.LP
.LP
." Copyright 2003-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH rmiregistry 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH rmiregistry 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -94,6 +93,4 @@ http://java.sun.com/javase/6/docs/api/java/rmi/registry/LocateRegistry.html and
.fi
http://java.sun.com/javase/6/docs/api/java/rmi/Naming.html
.LP
.LP
." Copyright 2005-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH schemagen 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH schemagen 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -129,6 +128,4 @@ http://java.sun.com/javase/6/docs/technotes/guides/xml/jaxb/index.html
.RE
.LP
.LP
." Copyright 2005-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH serialver 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH serialver 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -121,6 +120,4 @@ and, if necessary, a security policy can be specified with the following option:
.fi
http://java.sun.com/javase/6/docs/api/java/io/ObjectStreamClass.html
.LP
.LP
." Copyright 2001-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH servertool 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH servertool 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -125,6 +124,4 @@ Exit the server tool.
.LP
.LP
orbd(1)
.LP
orbd(1)
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,14 +19,11 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH tnameserv 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH tnameserv 1 "02 Jun 2010"
.LP
.SH "Name"
Java IDL: Transient Naming Service \- \f2tnameserv\fP
.LP
.LP
.LP
This document discusses using the Java IDL Transient Naming Service, \f2tnameserv\fP. Java IDL also includes the Object Request Broker Daemon (ORBD). ORBD is a daemon process containing a Bootstrap Service, a Transient Naming Service, a \f3Persistent\fP Naming Service, and a Server Manager. The Java IDL tutorials all use ORBD, however, you can substitute \f2tnameserv\fP for \f2orbd\fP in any of the examples that use a Transient Naming Service. For documentation on the \f2orbd\fP tool, link to its orbd(1) or the
......@@ -499,6 +496,4 @@ bindings[i].binding_name[lastIx].id);
.fi
.LP
.LP
." Copyright 2004-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH unpack200 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH unpack200 1 "02 Jun 2010"
.LP
.SH "Name"
......@@ -190,6 +189,4 @@ This command should not be confused with \f2unpack(1)\fP. They are distinctly se
.LP
The Java SE API Specification provided with the JDK is the superseding authority, in case of discrepancies.
.LP
.LP
." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH wsgen 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH wsgen 1 "02 Jun 2010"
.SH "Name"
wsgen \- Java(TM) API for XML Web Services (JAX\-WS) 2.0
.RS 3
......@@ -355,7 +354,7 @@ Used only in conjunction with the \f2\-wsdl\fP option. Used to specify a particu
.nr 41 \n(80+(3*\n(38)
.nr 81 +\n(41
.nr TW \n(81
.if t .if \n(TW>\n(.li .tm Table at line 140 file Input is too wide - \n(TW units
.if t .if \n(TW>\n(.li .tm Table at line 139 file Input is too wide - \n(TW units
.fc  
.nr #T 0-1
.nr #a 0-1
......
此差异已折叠。
." Copyright 2005-2006 Sun Microsystems, Inc. All Rights Reserved.
." Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
."
." This code is free software; you can redistribute it and/or modify it
......@@ -19,8 +19,7 @@
." or visit www.oracle.com if you need additional information or have any
." questions.
."
.TH xjc 1 "04 May 2009"
." Generated from HTML by html2man (author: Eric Armstrong)
.TH xjc 1 "02 Jun 2010"
.LP
.ad c
......@@ -285,6 +284,4 @@ http://java.sun.com/javase/6/docs/technotes/guides/xml/jaxb/index.html
.RE
.LP
.LP
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册