author | katleman |
Thu, 05 Jan 2012 08:42:37 -0800 | |
changeset 11376 | 075fe3928b7f |
parent 9566 | d7241af95355 |
child 23600 | d21826f6c789 |
permissions | -rw-r--r-- |
9566
d7241af95355
7043580: integrate man page translation drop 2 into jdk7
mfang
parents:
9352
diff
changeset
|
1 |
." Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. |
2692 | 2 |
." 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 |
." |
|
5506 | 18 |
." 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. |
|
2692 | 21 |
." |
9566
d7241af95355
7043580: integrate man page translation drop 2 into jdk7
mfang
parents:
9352
diff
changeset
|
22 |
.TH native2ascii 1 "07 May 2011" |
2692 | 23 |
|
24 |
.LP |
|
9352 | 25 |
.SH "名前" |
26 |
native2ascii \- ネイティブ \- ASCII コンバータ |
|
2692 | 27 |
.LP |
28 |
.LP |
|
9352 | 29 |
サポートされる文字エンコーディングの文字のファイルを ASCII または Unicode エスケープあるいはその両方のファイルに変換します。その逆の変換も行います。 |
2692 | 30 |
.LP |
9352 | 31 |
.SH "形式" |
2 | 32 |
.LP |
2692 | 33 |
.nf |
34 |
\f3 |
|
35 |
.fl |
|
36 |
\fP\f4native2ascii\fP\f2 [options] [inputfile [outputfile]]\fP |
|
37 |
.fl |
|
38 |
.fi |
|
39 |
||
40 |
.LP |
|
9352 | 41 |
.SH "説明" |
2692 | 42 |
.LP |
43 |
.LP |
|
9352 | 44 |
\f2native2ascii\fP Java 実行環境でサポートされる文字エンコーディングにエンコードされたファイルを、ASCII でエンコードされたファイルに変換します。ASCII 文字セットの一部でないすべての文字で Unicode エスケープ (「\\uxxxx」の表記) を使用します。このプロセスは、ISO\-8859\-1 文字セットに含まれない文字が含まれているプロパティーファイルで必要です。このツールは、その逆の変換を実行することもできます。 |
2692 | 45 |
.LP |
46 |
.LP |
|
9352 | 47 |
\f2outputfile\fP を省略した場合、標準出力に出力されます。さらに、 \f2inputfile\fP を省略した場合、標準入力から入力されます。 |
2692 | 48 |
.LP |
9352 | 49 |
.SH "オプション" |
2692 | 50 |
.LP |
51 |
.RS 3 |
|
52 |
.TP 3 |
|
53 |
\-reverse |
|
9352 | 54 |
逆の処理を行います。つまり、ISO\-8859\-1 で Unicode エスケープを使ってエンコードされたファイルを、Java 実行環境でサポートされる文字エンコーディングのファイルに変換します。 |
2 | 55 |
.br |
2692 | 56 |
.br |
57 |
.TP 3 |
|
58 |
\-encoding encoding_name |
|
9352 | 59 |
変換処理で使用する文字エンコーディングの名前を指定します。このオプションが存在しない場合は、デフォルトの文字エンコーディング ( \f2java.nio.charset.Charset.defaultCharset\fP メソッドで定義される) が使用されます。 \f2encoding_name\fP 文字列は、 |
2692 | 60 |
.na |
9352 | 61 |
\f4「サポートされている文字列エンコーディング」\fP @ |
2692 | 62 |
.fi |
9352 | 63 |
http://java.sun.com/javase/6/docs/technotes/guides/intl/encoding.doc.htmlドキュメントに示されている、Java 実行環境でサポートされる文字エンコーディングの名前にする必要があります。 |
64 |
.br |
|
65 |
.br |
|
2692 | 66 |
.TP 3 |
67 |
\-Joption |
|
9352 | 68 |
Java 仮想マシンに \f2option\fP を渡します。\f2option\fP には、java(1)のリファレンスページに記載されているオプションを 1 つ指定します。たとえば、\f3\-J\-Xms48m\fP と指定すると、スタートアップメモリーは 48M バイトに設定されます。 |
2692 | 69 |
.RE |
2 | 70 |
|
2692 | 71 |
.LP |
72 |