1 17 18 package org.apache.james.fetchpop; 19 import java.io.IOException ; 20 import java.io.InputStream ; 21 import java.io.Reader ; 22 29 public class ReaderInputStream extends InputStream { 30 private Reader reader = null; 31 public ReaderInputStream(Reader reader) { 32 this.reader = reader; 33 } 34 37 public int read() throws IOException { 38 return reader.read(); 39 } 40 } 41 | Popular Tags |