Input_UnicodeBig.java: New class..

* gnu/gcj/convert/Input_UnicodeBig.java:  New class..
	* gnu/gcj/convert/Input_UnicodeLittle.java:  New class.
	* Makefile.am:  Update accordingly.
	* gnu/gcj/convert/IOConverter.java:  Define "utf-16le" and "utf16be"
	as aliases for UnicodeLittle and UnicodeBig.

From-SVN: r79723
This commit is contained in:
Per Bothner
2004-03-19 16:24:49 -08:00
committed by Per Bothner
parent 4546865e5b
commit 0fca95f56f
6 changed files with 119 additions and 5 deletions
+3 -1
View File
@@ -63,7 +63,9 @@ public abstract class IOConverter
hash.put ("extended_unix_code_packed_format_for_japanese", "EUCJIS");
hash.put ("cseucpkdfmtjapanese", "EUCJIS");
hash.put ("euc-jp", "EUCJIS");
hash.put ("euc-jp", "EUCJIS");
hash.put ("utf-16le", "UnicodeLittle");
hash.put ("utf-16be", "UnicodeBig");
iconv_byte_swap = iconv_init ();
}