Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 26968 invoked from network); 7 Nov 2006 06:23:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Nov 2006 06:23:52 -0000 Received: (qmail 61286 invoked by uid 500); 7 Nov 2006 06:23:57 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 61266 invoked by uid 500); 7 Nov 2006 06:23:57 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 61222 invoked by uid 99); 7 Nov 2006 06:23:56 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Nov 2006 22:23:56 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Nov 2006 22:23:44 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id C315371430E for ; Mon, 6 Nov 2006 22:23:24 -0800 (PST) Message-ID: <32098950.1162880604796.JavaMail.jira@brutus> Date: Mon, 6 Nov 2006 22:23:24 -0800 (PST) From: "Igor Stolyarov (JIRA)" To: harmony-commits@incubator.apache.org Subject: [jira] Commented: (HARMONY-1054) [classlib][io] java.io.BufferedInputStream.read() throws unexpected exception when it created from null InputStream In-Reply-To: <3127249.1154597414409.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ http://issues.apache.org/jira/browse/HARMONY-1054?page=comments#action_12447661 ] Igor Stolyarov commented on HARMONY-1054: ----------------------------------------- [[ Old comment, sent by email on Fri, 4 Aug 2006 13:49:17 +0400 ]] Hi Tim. I've seen that. I agree with your suggestion and think what better is using Message Properties for throwing Exceptions. -- Igor V. Stolyarov Intel Middleware Products Division > [classlib][io] java.io.BufferedInputStream.read() throws unexpected exception when it created from null InputStream > ------------------------------------------------------------------------------------------------------------------- > > Key: HARMONY-1054 > URL: http://issues.apache.org/jira/browse/HARMONY-1054 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Igor V. Stolyarov > Assigned To: Tim Ellison > Attachments: BufferedInputStream.patch > > > java.io.BufferedInputStream.read() throws unexpected exception when it created from null InputStream > Test--------------------------------------------------------------------------------- > import java.io.*; > public class Test { > public static void main(String[] args) { > try { > BufferedInputStream str = new BufferedInputStream (null); > str.read(); > } catch (Exception e) { > e.printStackTrace(); > } > } > } > Output------------------------------------------------------------------------------- > BEA JRockit: > java version "1.5.0" > Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64) > BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: > System optimized over throughput (initial strategy singleparpar)) > java.io.IOException: Stream closed > at java.io.BufferedInputStream.getInIfOpen(BufferedInputStream.java:134) > at java.io.BufferedInputStream.fill(BufferedInputStream.java:218) > at java.io.BufferedInputStream.read(BufferedInputStream.java:235) > at DateTest.main(DateTest.java:33) > Harmony: > java version 1.5 (subset) > (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as app > licable. > java.lang.NullPointerException > at java.io.BufferedInputStream.fillbuf(BufferedInputStream.java:122) > at java.io.BufferedInputStream.read(BufferedInputStream.java:192) > at DateTest.main(DateTest.java:33) -- 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