Tagged Questions

7
votes
2answers
1k views

Should I buffer the InputStream or the InputStreamReader?

What are the differences (if any) between the following two buffering approaches? Reader r1 = new BufferedReader(new InputStreamReader(in, "UTF-8"), bufferSize); Reader r2 = new InputStreamReader(new ...
3
votes
4answers
2k views

How java.io.Buffer* stream differs from normal streams?

How buffered streams are working on the background and how it actually differs and what is the real advantage of using the same? Another Query,.. Since DataInputSytream is also Byte based, but it is ...
0
votes
1answer
19 views

How to transfer integer or byte array through socket in java

yes i did look at the tutorials on sun and they didn`t help in my case, only transferred the first command. I`ve got a method public void openConnection() throws IOException{ serverSocket = new ...
-1
votes
1answer
47 views

Write to BufferedReader from another class

I need a method to write to a BufferedReader input from another class. In class A I use BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in)); and str = stdin.readLine(); to get ...