reading in bigger chunks?


Hello, Tom

This depends on from where we read. I thought the user will use our BufferedReader to cover the multiple components being read. The optimal buffer size should be larger than the size of the text, stored in the typical Swing component (labels, buttons, menu items and so on, I think, normally contain 16-20 characters at most, but more frequently 6-8 or about).

Cheers
Audrius

Tom Tromey wrote:

"Audrius" == Meskauskas Audrius <[EMAIL PROTECTED]> writes:

Audrius> +    StringBuffer b = new StringBuffer();
Audrius> +    int c;
Audrius> +
Audrius> +    // Read till -1 (EOF).
Audrius> +    while ((c = input.read()) >= 0)
Audrius> +      b.append((char) c);

Ouch.  How about reading in bigger chunks?

Tom





_______________________________________________
Classpath-patches mailing list
Classpath-patches@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-patches

Reply via email to