-
Bug
-
Resolution: Fixed
-
P4
-
1.1, 1.1.2, 1.1.3, 1.2.0
-
1.1.4
-
x86, sparc
-
solaris_2.5.1, windows_95
-
Not verified
Name: dkC59003 Date: 08/07/97
The following code fails to convert all the encoding characters into correct
set of bytes (JDK 1.2G):
... ByteArrayOutputStream baos = new ByteArrayOutputStream( expectedBytes.length );
OutputStreamWriter writer = new OutputStreamWriter( baos, "Big5" );
writer.write( inputChars );
writer.flush();
bytes = baos.toByteArray(); ...
To reproduce compile and run the JCK tests: tests/api/java_io/mbCharEncoding/TestBig5.java
See tests/api/java_io/mbCharEncoding/index.html and comments in
tests/api/java_io/mbCharEncoding/MBEncodingTest.java for test descriptions.
The test outputs:
Incorrect number of bytes written: 27400 expected: 27406
First time character to byte conversion failed with 8193 byte:
expected: ffffffb6 received: ffffffb7
======================================================================
- duplicates
-
JDK-4034986 KSC5601 to Unicode converter often discard some coverted Unicode characters
-
- Closed
-
-
JDK-4066842 sun.io.CharToByteKSC5601 cause incorret charset conversion.
-
- Closed
-
-
JDK-4072657 FileOutputStream : write lost 1 byte per about 8K bytes.
-
- Closed
-
-
JDK-4075935 Omitted characters in String.getBytes()
-
- Closed
-