blob: 16dfa9bcc93bf23cde8b5fc2b74d963b0aa81329 [file] [log] [blame]
bpatel4bf512b2011-05-11 08:30:46 -07001." Copyright (c) 1994, 2011, Oracle and/or its affiliates. All rights reserved.
duke6e45e102007-12-01 00:00:00 +00002." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3."
4." This code is free software; you can redistribute it and/or modify it
5." under the terms of the GNU General Public License version 2 only, as
6." published by the Free Software Foundation.
7."
8." This code is distributed in the hope that it will be useful, but WITHOUT
9." ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10." FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
11." version 2 for more details (a copy is included in the LICENSE file that
12." accompanied this code).
13."
14." You should have received a copy of the GNU General Public License version
15." 2 along with this work; if not, write to the Free Software Foundation,
16." Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
17."
ohair2283b9d2010-05-25 15:58:33 -070018." Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
19." or visit www.oracle.com if you need additional information or have any
20." questions.
tbell16c34dd2009-05-04 18:28:26 -070021."
bpatel4bf512b2011-05-11 08:30:46 -070022.TH javah 1 "10 May 2011"
duke6e45e102007-12-01 00:00:00 +000023
24.LP
tbell16c34dd2009-05-04 18:28:26 -070025.SH "Name"
duke6e45e102007-12-01 00:00:00 +000026javah \- C Header and Stub File Generator
27.LP
duke6e45e102007-12-01 00:00:00 +000028.LP
29\f3javah\fP produces C header files and C source files from a Java class. These files provide the connective glue that allow your Java and C code to interact.
30.LP
31.SH "SYNOPSIS"
32.LP
duke6e45e102007-12-01 00:00:00 +000033.nf
34\f3
35.fl
36javah [ \fP\f3options\fP\f3 ] fully\-qualified\-classname. . .
37.fl
duke6e45e102007-12-01 00:00:00 +000038\fP
39.fi
40
41.LP
42.SH "DESCRIPTION"
43.LP
duke6e45e102007-12-01 00:00:00 +000044.LP
45\f3javah\fP generates C header and source files that are needed to implement native methods. The generated header and source files are used by C programs to reference an object's instance variables from native source code. The .h file contains a struct definition whose layout parallels the layout of the corresponding class. The fields in the struct correspond to instance variables in the class.
46.LP
47.LP
48The name of the header file and the structure declared within it are derived from the name of the class. If the class passed to \f3javah\fP is inside a package, the package name is prepended to both the header file name and the structure name. Underscores (_) are used as name delimiters.
49.LP
50.LP
51By default \f3javah\fP creates a header file for each class listed on the command line and puts the files in the current directory. Use the \f2\-stubs\fP option to create source files. Use the \f2\-o\fP option to concatenate the results for all listed classes into a single file.
52.LP
53.LP
54The new native method interface, Java Native Interface (JNI), does not require header information or stub files. \f3javah\fP can still be used to generate native method function proptotypes needed for JNI\-style native methods. \f3javah\fP produces JNI\-style output by default, and places the result in the .h file.
55.LP
duke6e45e102007-12-01 00:00:00 +000056.SH "OPTIONS"
57.LP
tbell16c34dd2009-05-04 18:28:26 -070058.RS 3
duke6e45e102007-12-01 00:00:00 +000059.TP 3
60\-o outputfile
61Concatenates the resulting header or source files for all the classes listed on the command line into \f2outputfile\fP. Only one of \f3\-o\fP or \f3\-d\fP may be used.
62.TP 3
63\-d directory
64Sets the directory where \f3javah\fP saves the header files or the stub files. Only one of \f3\-d\fP or \f3\-o\fP may be used.
65.TP 3
66\-stubs
67Causes \f3javah\fP to generate C declarations from the Java object file.
68.TP 3
69\-verbose
70Indicates verbose output and causes \f3javah\fP to print a message to stdout concerning the status of the generated files.
71.TP 3
72\-help
73Print help message for \f3javah\fP usage.
74.TP 3
75\-version
76Print out \f3javah\fP version information.
77.TP 3
78\-jni
79Causes \f3javah\fP to create an output file containing JNI\-style native method function prototypes. This is the default output, so use of \f3\-jni\fP is optional.
80.TP 3
81\-classpath path
82Specifies the path \f3javah\fP uses to look up classes. Overrides the default or the CLASSPATH environment variable if it is set. Directories are separated by colons. Thus the general format for \f2path\fP is:
83.nf
84\f3
85.fl
86 .:<your_path>
87.fl
88\fP
89.fi
90For example:
91.nf
92\f3
93.fl
94 .:/home/avh/classes:/usr/local/java/classes
95.fl
96\fP
97.fi
duke6e45e102007-12-01 00:00:00 +000098As a special convenience, a class path element containing a basename of \f2*\fP is considered equivalent to specifying a list of all the files in the directory with the extension \f2.jar\fP or \f2.JAR\fP (a java program cannot tell the difference between the two invocations).
99.br
100.br
bpatel4bf512b2011-05-11 08:30:46 -0700101For example, if directory \f2foo\fP contains \f2a.jar\fP and \f2b.JAR\fP, then the class path element \f2foo/*\fP is expanded to a \f2A.jar:b.JAR\fP, except that the order of jar files is unspecified. All jar files in the specified directory, even hidden ones, are included in the list. A classpath entry consisting simply of \f2*\fP expands to a list of all the jar files in the current directory. The \f2CLASSPATH\fP environment variable, where defined, will be similarly expanded. Any classpath wildcard expansion occurs before the Java virtual machine is started \-\- no Java program will ever see unexpanded wildcards except by querying the environment. For example; by invoking \f2System.getenv("CLASSPATH")\fP.
duke6e45e102007-12-01 00:00:00 +0000102.TP 3
103\-bootclasspath path
104Specifies path from which to load bootstrap classes. By default, the bootstrap classes are the classes implementing the core Java 2 platform located in \f2jre/lib/rt.jar\fP and several other jar files.
105.TP 3
106\-old
107Specifies that old JDK1.0\-style header files should be generated.
108.TP 3
109\-force
110Specifies that output files should always be written.
111.TP 3
112\-Joption
tbell16c34dd2009-05-04 18:28:26 -0700113Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the options described on the reference page for the java(1). For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes.
114.RE
115
duke6e45e102007-12-01 00:00:00 +0000116.LP
117.SH "ENVIRONMENT VARIABLES"
118.LP
tbell16c34dd2009-05-04 18:28:26 -0700119.RS 3
duke6e45e102007-12-01 00:00:00 +0000120.TP 3
121CLASSPATH
122Used to provide the system a path to user\-defined classes. Directories are separated by colons, for example,
123.nf
124\f3
125.fl
126.:/home/avh/classes:/usr/local/java/classes
127.fl
128\fP
129.fi
tbell16c34dd2009-05-04 18:28:26 -0700130.RE
duke6e45e102007-12-01 00:00:00 +0000131
132.LP
133.SH "SEE ALSO"
134.LP
duke6e45e102007-12-01 00:00:00 +0000135.LP
tbell16c34dd2009-05-04 18:28:26 -0700136javac(1), java(1), jdb(1), javap(1), javadoc(1)
duke6e45e102007-12-01 00:00:00 +0000137.LP
duke6e45e102007-12-01 00:00:00 +0000138