-
Bug
-
Resolution: Won't Fix
-
P4
-
1.4.2_08
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2129026 | 5.0u8 | Abhijit Saha | P4 | Closed | Won't Fix |
If -Dfile.encoding=UTF-8 is already set, then again calling the
sun.io.ByteToCharConverter.getConverter("UTF-8") generating exception while
reading the file.
The behavior is same if the "UTF-8" is replaced with "UTF8" in both places.
In one place using "UTF-8" and in other place using "UTF8" succeeds.
Test case attached :-
Running the attached program as follows
unknown% java -Dfile.encoding=UTF8 -cp .:$CLASSPATH TestFile tmp.txt UTF8
Reading in file: tmp.txt
enc :UTF8
setting char encoding to :UTF8
Error reading the file.
sun.io.MalformedInputException
at sun.io.ByteToCharUTF8.convert(ByteToCharUTF8.java:149)
at sun.nio.cs.StreamDecoder$ConverterSD.convertInto(StreamDecoder.java:247)
at sun.nio.cs.StreamDecoder$ConverterSD.implRead(StreamDecoder.java:297) at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:182)
at java.io.InputStreamReader.read(InputStreamReader.java:167)
at java.io.BufferedReader.fill(BufferedReader.java:136)
at java.io.BufferedReader.readLine(BufferedReader.java:299)
at java.io.BufferedReader.readLine(BufferedReader.java:362)
at TestFile.main(TestFile.java:26)
Read the lines :4057
DONE
###@###.### 2005-05-22 18:40:33 GMT
sun.io.ByteToCharConverter.getConverter("UTF-8") generating exception while
reading the file.
The behavior is same if the "UTF-8" is replaced with "UTF8" in both places.
In one place using "UTF-8" and in other place using "UTF8" succeeds.
Test case attached :-
Running the attached program as follows
unknown% java -Dfile.encoding=UTF8 -cp .:$CLASSPATH TestFile tmp.txt UTF8
Reading in file: tmp.txt
enc :UTF8
setting char encoding to :UTF8
Error reading the file.
sun.io.MalformedInputException
at sun.io.ByteToCharUTF8.convert(ByteToCharUTF8.java:149)
at sun.nio.cs.StreamDecoder$ConverterSD.convertInto(StreamDecoder.java:247)
at sun.nio.cs.StreamDecoder$ConverterSD.implRead(StreamDecoder.java:297) at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:182)
at java.io.InputStreamReader.read(InputStreamReader.java:167)
at java.io.BufferedReader.fill(BufferedReader.java:136)
at java.io.BufferedReader.readLine(BufferedReader.java:299)
at java.io.BufferedReader.readLine(BufferedReader.java:362)
at TestFile.main(TestFile.java:26)
Read the lines :4057
DONE
###@###.### 2005-05-22 18:40:33 GMT
- backported by
-
JDK-2129026 sun.io.ByteToCharConverter.getConverter() generating exception
-
- Closed
-