Search:

Type: Posts; User: aussiemcgr

Search: Search took 0.08 seconds.

  1. Re: Difference between BufferedReader and InputStreamReader output for the code below.

    Your answer is provided in the API documentation for InputStreamReader: InputStreamReader (Java Platform SE 7 )


    And, from the BufferedReader API: BufferedReader (Java Platform SE 7 )


    So...
  2. Re: Difference between BufferedReader and InputStreamReader output for the code below.

    Well, for one, you have a spelling error.
    In your second one, this:
    }while(ch!='q');
    should be this:
    }while(ch1!='q');
Results 1 to 2 of 2