You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mikhail Loenko (JIRA)" <ji...@apache.org> on 2006/04/26 06:20:03 UTC

[jira] Assigned: (HARMONY-411) InputStreamReader should not thrown exception if bytes sequence is incomplete

     [ http://issues.apache.org/jira/browse/HARMONY-411?page=all ]

Mikhail Loenko reassigned HARMONY-411:
--------------------------------------

    Assign To: Mikhail Loenko

> InputStreamReader should not thrown exception if bytes sequence is incomplete
> -----------------------------------------------------------------------------
>
>          Key: HARMONY-411
>          URL: http://issues.apache.org/jira/browse/HARMONY-411
>      Project: Harmony
>         Type: Bug

>   Components: Classlib
>     Reporter: Vladimir Strigun
>     Assignee: Mikhail Loenko
>     Priority: Minor
>  Attachments: Harmony-411_patch.txt, Harmony-411_test.txt
>
> Harmony implementation of method read() throws IOException if bytes sequence is incomplete in current charset. RI implementation replace malfromed input  with default replacement.
> The following test failed on Harmony classlib (java.io.IOException: CoderResult[Malformed-input error with erroneous input length 2]):
> 	public void testRead() throws Exception {
> 		InputStreamReader isr = new InputStreamReader(new ByteArrayInputStream(new byte[] {-32, -96}), "UTF-8");
> 		assertTrue("read() return incorrect value", isr.read()==65533);
> 	}
> I will attach testcase and patch soon.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira