|
Spec-Zone .ru
спецификации, руководства, описания, API
|
Converts a file with characters in any supported character encoding to one with ASCII and/or Unicode escapes, or visa versa.
native2ascii [options] [inputfile [outputfile]]
native2asciiconverts files that are encoded to any character encoding that is supported by the Java runtime environment to files encoded in ASCII, using Unicode escapes ("\uxxxx" notation) for all characters that are not part of the ASCII character set. This process is required for properties files containing characters not in ISO-8859-1 character sets. The tool can also perform the reverse conversion.If
outputfileis omitted, standard output is used for output. If, in addition,inputfileis omitted, standard input is used for input.
-reverse- Perform the reverse operation: Convert a file encoded in ISO-8859-1 with Unicode escapes to a file in any character encoding supported by the Java runtime environment.
-encoding encoding_name- Specifies the name of the character encoding to be used by the conversion procedure. If this option is not present, the default character encoding (as determined by the
java.nio.charset.Charset.defaultCharsetmethod) is used. Theencoding_namestring must be the name of a character encoding that is supported by the Java runtime environment - see the Supported Encodings document.- -Joption
- Pass option to the Java virtual machine, where option is one of the options described on the reference page for the java application launcher. For example, -J-Xms48m sets the startup memory to 48 megabytes.
| Java Technology |
Copyright © 1993, 2010, Oracle and/or its affiliates. All rights reserved. |