thufir

Untitled

Aug 29th, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. package teln;
  2.  
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5.  
  6. public class StreamReader {
  7.  
  8. private StreamReader() {
  9. }
  10.  
  11. StreamReader(InputStream inputStream) throws IOException {
  12. char ch = (char) inputStream.read();
  13. while (true) {
  14. System.out.print(ch);
  15. ch = (char) inputStream.read();
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment