1native2ascii(1) General Commands Manual native2ascii(1)
2
3
4
6 native2ascii - Native-to-ASCII Converter
7
8 Converts a file with native-encoded characters (characters which are
9 non-Latin 1 and non-Unicode) to one with Unicode-encoded characters.
10
12 native2ascii [options] [inputfile [outputfile]]
13
14
16 The Java compiler and other Java tools can only process files which
17 contain Latin-1 and/or Unicode-encoded (\udddd notation) characters.
18 native2ascii converts files which contain other character encodings
19 into files containing Latin-1 and/or Unicode-encoded charaters.
20
21 If outputfile is omitted, standard output is used for output. If, in
22 addition, inputfile is omitted, standard input is used for input.
23
25 -reverse
26 Perform the reverse operation: convert a file with Latin-1 and/or
27 Unicode encoded characters to one with native-encoded characters.
28
29 -encoding encoding_name
30 Specify the encoding name which is used by the conversion procedure.
31 The default encoding is taken from System property file.encoding.
32 The encoding_name string must be taken from the first column of the
33 table of supported encodings in the Supported Encodings @
34 http://java.sun.com/javase/6/docs/technotes/guides/intl/encod‐
35 ing.doc.html document.
36
37 -Joption
38 Pass option to the Java virtual machine, where option is one of the
39 options described on the reference page for the java application
40 launcher. For example, -J-Xms48m sets the startup memory to 48
41 megabytes.
42
43 05 Aug 2006 native2ascii(1)