OSDN Git Service

Add linux.x86 linux.x86_64 target
[pizza-ipa-oss/jre.git] / features / jp.pizzafactory.com.sun.jre / rootfiles.linux.x86 / jre / man / man1 / pack200.1
1 ." Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved. 
2 ."
3 .TH pack200 1 "06 Apr 2010"
4 ." Generated from HTML by html2man (author: Eric Armstrong)
5
6 .LP
7 .SH "Name"
8 pack200 \- JAR Packing tool
9 .LP
10 .SH "SYNOPSIS"
11 .LP
12
13 .LP
14 .LP
15 \f4pack200\fP\f2 [ \fP\f2options\fP ] \f2output\-file\fP \f2JAR\-file\fP
16 .LP
17 .LP
18 Options may be in any order. The last option on the command line or in a properties file supersedes all previously specified options.
19 .LP
20 .RS 3
21
22 .LP
23 .RS 3
24 .TP 3
25 options 
26 Command\-line options. 
27 .TP 3
28 output\-file 
29 Name of the output file. 
30 .TP 3
31 JAR\-file 
32 Name of the input file. 
33 .RE
34
35 .LP
36 .RE
37 .SH "DESCRIPTION"
38 .LP
39
40 .LP
41 .LP
42 The \f2pack200\fP tool is a Java application that transforms a JAR file into a compressed \f2pack200\fP file using the Java \f2gzip\fP compressor. The \f2pack200\fP files are highly compressed files that can be directly deployed, saving bandwidth and reducing download time.
43 .LP
44 .LP
45 The \f2pack200\fP tool uses several options to fine\-tune and set the compression engine.
46 .LP
47 .SS 
48 Typical usage:
49 .LP
50 .RS 3
51
52 .LP
53 .LP
54 \f2% pack200 myarchive.pack.gz myarchive.jar\fP
55 .LP
56 .RE
57 .LP
58 In this example, \f2myarchive.pack.gz\fP is produced using the default \f2pack200\fP settings.
59 .LP
60 .SH "OPTIONS"
61 .LP
62
63 .LP
64 .LP
65 \f4\-r \-\-repack\fP
66 .LP
67 .RS 3
68
69 .LP
70 .LP
71 Produces a JAR file by packing the file \f2myarchive.jar\fP and unpacking it. The resulting file can be used as an input to the \f2jarsigner(1)\fP tool.
72 .LP
73 .RS 3
74
75 .LP
76 .LP
77 \f2% pack200 \-\-repack myarchive\-packer.jar myarchive.jar\fP
78 .LP
79 .LP
80 \f2% pack200 \-\-repack myarchive.jar\fP
81 .LP
82 .RE
83 .RE
84 .LP
85 \f4\-g \-\-no\-gzip\fP
86 .LP
87 .RS 3
88
89 .LP
90 .LP
91 Produces a \f2pack200\fP file. With this option a suitable compressor must be used, and the target system must use a corresponding decompresser.
92 .LP
93 .RS 3
94
95 .LP
96 .LP
97 \f2% pack200 \-\-no\-gzip myarchive.pack myarchive.jar\fP
98 .LP
99 .RE
100 .RE
101 .LP
102 \f4\-G \-\-strip\-debug\fP
103 .LP
104 .RS 3
105
106 .LP
107 .LP
108 Strips attributes used for debugging from the output. These include \f2SourceFile\fP, \f2LineNumberTable\fP, \f2LocalVariableTable\fP and \f2LocalVariableTypeTable\fP. Removing these attributes reduces the size of both downloads and installations but reduces the usefulness of debuggers.
109 .LP
110 .RE
111 .LP
112 \f4\-O \-\-no\-keep\-file\-order\fP
113 .LP
114 .RS 3
115
116 .LP
117 .LP
118 The packer will reorder and transmit all elements. Additionally, the packer may remove JAR directory names. This will reduce the download size; however, certain JAR file optimizations, such as indexing, may not work correctly.
119 .LP
120 .RE
121 .LP
122 \f4\-Svalue \-\-segment\-limit=\fP\f2value\fP
123 .LP
124 .RS 3
125
126 .LP
127 .LP
128 The value is the estimated target size N (in bytes) of each archive segment. If a single input file requires
129 .br
130 more than N bytes, it will be given its own archive segment. As a special case, a value of \f2\-1\fP will produce a single large segment with all input files, while a value of \f20\fP will produce one segment for each class. Larger archive segments result in less fragmentation and better compression, but processing them requires more memory.
131 .LP
132 .LP
133 The size of each segment is estimated by counting the size of each input file to be transmitted in the segment, along with the size of its name and other transmitted properties.
134 .LP
135 .LP
136 The default is \f21000000\fP (a million bytes). This allows input JAR files of moderate size to be transmitted in one segment. It also puts a limit on memory requirements for packers and unpackers.
137 .LP
138 .LP
139 A 10MB JAR packed without this limit will typically pack about 10% smaller, but the packer may require a larger Java heap (about ten times the segment limit).
140 .LP
141 .RE
142 .LP
143 \f4\-Evalue \-\-effort=\fP\f2value\fP
144 .LP
145 .RS 3
146
147 .LP
148 .LP
149 If the value is set to a single decimal digit, the packer will use the indicated amount of effort in compressing the archive. Level \f21\fP may produce somewhat larger size and faster compression speed, while level \f29\fP will take much longer but may produce better compression. The special value \f20\fP instructs the packer to copy through the original JAR file directly with no compression. The JSR 200 standard requires any unpacker to understand this special case as a pass\-through of the entire archive.
150 .LP
151 .LP
152 The default is \f25\fP, investing a modest amount of time to produce reasonable compression.
153 .LP
154 .RE
155 .LP
156 \f4\-Hvalue \-\-deflate\-hint=\fP\f2value\fP
157 .LP
158 .RS 3
159
160 .LP
161 .LP
162 Overrides the default, which preserves the input information, but may cause the transmitted archive to be larger. The possible values are:
163 .LP
164 .RS 3
165 .TP 3
166 true 
167 .TP 3
168 false 
169 In either case, the packer will set the deflation hint accordingly in the output archive, and will not transmit the individual deflation hints of archive elements. 
170 .RE
171
172 .LP
173 .RS 3
174 .TP 3
175 keep 
176 Preserve deflation hints observed in the input JAR. (This is the default.) 
177 .RE
178
179 .LP
180 .RE
181 .LP
182 \f4\-mvalue \-\-modification\-time=\fP\f2value\fP
183 .LP
184 .RS 3
185
186 .LP
187 .LP
188 The possible values are:
189 .LP
190 .RS 3
191 .TP 3
192 latest 
193 The packer will attempt to determine the latest modification time, among all the available entries in the original archive, or the latest modification time of all the available entries in that segment. This single value will be transmitted as part of the segment and applied to all the entries in each segment. This can marginally decrease the transmitted size of the archive at the expense of setting all installed files to a single date. 
194 .TP 3
195 keep 
196 Preserves modification times observed in the input JAR. (This is the default.) 
197 .RE
198
199 .LP
200 .RE
201 .LP
202 \f4\-Pfile \-\-pass\-file=\fP\f2file\fP
203 .LP
204 .RS 3
205
206 .LP
207 .LP
208 Indicates that a file should be passed through bytewise with no compression. By repeating the option, multiple files may be specified. There is no pathname transformation, except that the system file separator is replaced by the JAR file separator "\f2/\fP". The resulting file names must match exactly as strings with their occurrences in the JAR file. If file is a directory name, all files under that directory will be passed.
209 .LP
210 .RE
211 .LP
212 \f4\-Uaction \-\-unknown\-attribute=\fP\f2action\fP
213 .LP
214 .RS 3
215
216 .LP
217 .LP
218 Overrides the default behavior; i.e., the classfile containing the unknown attribute will be passed through with the specified action. The possible values for actions are:
219 .LP
220 .RS 3
221 .TP 3
222 error 
223 The \f2pack200\fP operation as a whole will fail with a suitable explanation. 
224 .TP 3
225 strip 
226 The attribute will be dropped. Note: Removing the required VM attributes may cause Class Loader failures. 
227 .TP 3
228 pass 
229 Upon encountering this attribute, the entire class will be transmitted as though it is a resource. 
230 .RE
231
232 .LP
233 .RE
234 .LP
235 \f4\-Cattribute\-name=\fP\f2layout\fP \f3\-\-class\-attribute=\fP\f2attribute\-name=action\fP
236 .br
237 \f4\-Fattribute\-name=\fP\f2layout\fP \f3\-\-field\-attribute=\fP\f2attribute\-name=action\fP
238 .br
239 \f4\-Mattribute\-name=\fP\f2layout\fP \f3\-\-method\-attribute=\fP\f2attribute\-name=action\fP
240 .br
241 \f4\-Dattribute\-name=\fP\f2layout\fP \f3\-\-code\-attribute=\fP\f2attribute\-name=action\fP
242 .LP
243 .RS 3
244
245 .LP
246 .LP
247 With the above four options, the attribute layout can be specified for a class entity, such as Class attribute, Field attribute, Method attribute, and Code attribute. The attribute\-name is the name of the attribute for which the layout or action is being defined. The possible values for action are:
248 .LP
249 .RS 3
250 .TP 3
251 some\-layout\-string 
252 The layout language is defined in the JSR 200 specification. 
253 .LP
254 Example: \f2\-\-class\-attribute=SourceFile=RUH\fP  
255 .TP 3
256 error 
257 Upon encountering this attribute, the pack200 operation will fail with a suitable explanation. 
258 .TP 3
259 strip 
260 Upon encountering this attribute, the attribute will be removed from the output. Note: removing VM\-required attributes may cause Class Loader failures. 
261 .RE
262
263 .LP
264 .LP
265 Example: \f2\-\-class\-attribute=CompilationID=pass\fP will cause the class file containing this attribute to be passed through without further action by the packer.
266 .LP
267 .RE
268 .LP
269 \f4\-f\fP\f2 \fP\f2pack.properties\fP \f3\-\-config\-file=\fP\f2pack.properties\fP
270 .LP
271 .RS 3
272
273 .LP
274 .LP
275 A configuration file, containing Java properties to initialize the packer, may be specified on the command line.
276 .LP
277 .RS 3
278
279 .LP
280 .LP
281 \f2% pack200 \-f pack.properties myarchive.pack.gz myarchive.jar\fP
282 .br
283 \f2% more pack.properties\fP
284 .br
285 \f2# Generic properties for the packer.\fP
286 .br
287 \f2modification.time=latest\fP
288 .br
289 \f2deflate.hint=false\fP
290 .br
291 \f2keep.file.order=false\fP
292 .br
293 \f2# This option will cause the files bearing new attributes to\fP
294 .br
295 \f2# be reported as an error rather than passed uncompressed.\fP
296 .br
297 \f2unknown.attribute=error\fP
298 .br
299 \f2# Change the segment limit to be unlimited.\fP
300 .br
301 \f2segment.limit=\-1\fP
302 .LP
303 .RE
304 .RE
305 .RS 3
306
307 .LP
308 .LP
309 \f4\-v \-\-verbose\fP
310 .LP
311 .RS 3
312
313 .LP
314 .LP
315 Outputs minimal messages. Multiple specification of this option will output more verbose messages.
316 .LP
317 .RE
318 .LP
319 \f4\-q \-\-quiet\fP
320 .LP
321 .RS 3
322
323 .LP
324 .LP
325 Specifies quiet operation with no messages.
326 .LP
327 .RE
328 .LP
329 \f4\-lfilename \-\-log\-file=\fP\f2filename\fP
330 .LP
331 .RS 3
332
333 .LP
334 .LP
335 Specifies a log file to output messages.
336 .LP
337 .RE
338 .LP
339 \f4\-Joption\fP
340 .LP
341 .RS 3
342
343 .LP
344 .LP
345 Passes option to the Java launcher called by \f2pack200\fP. For example, \f2\-J\-Xms48m\fP sets the startup memory to 48 megabytes. Although it does not begin with \f2\-X\fP, it is not a standard option of \f2pack200\fP. It is a common convention for \f2\-J\fP to pass options to the underlying VM executing applications written in Java.
346 .LP
347 .RE
348 .RE
349 .SH "EXIT STATUS"
350 .LP
351
352 .LP
353 .LP
354 The following exit values are returned:
355 .LP
356 .RS 3
357
358 .LP
359 .LP
360 \f2\ 0\fP for successful completion;
361 .LP
362 .LP
363 \f2>0\fP if an error occurs.
364 .LP
365 .RE
366 .SH "SEE ALSO"
367 .LP
368 .RS 3
369 .TP 2
370 o
371 unpack200(1) 
372 .TP 2
373 o
374 .na
375 \f2Java SE Documentation\fP @
376 .fi
377 http://java.sun.com/javase/6/docs/index.html 
378 .TP 2
379 o
380 .na
381 \f2Java Deployment Guide \- Pack200\fP @
382 .fi
383 http://java.sun.com/javase/6/docs/technotes/guides/deployment/deployment\-guide/pack200.html 
384 .TP 2
385 o
386 jar(1) \- Java Archive Tool 
387 .TP 2
388 o
389 jarsigner(1) \- JAR Signer tool 
390 .TP 2
391 o
392 \f2attributes(5)\fP man page 
393 .RE
394
395 .LP
396 .SH "NOTES"
397 .LP
398
399 .LP
400 .LP
401 This command should not be confused with \f2pack(1)\fP. They are distinctly separate products.
402 .LP
403 .LP
404 The Java SE API Specification provided with the JDK is the superseding authority, in case of discrepancies.
405 .LP
406