1 28 29 package com.caucho.vfs.i18n; 30 31 import java.io.IOException ; 32 import java.io.InputStream ; 33 import java.io.Reader ; 34 35 38 public class ISO8859_1Reader extends EncodingReader { 39 private InputStream is; 40 41 44 public ISO8859_1Reader() 45 { 46 } 47 48 51 private ISO8859_1Reader(InputStream is) 52 { 53 this.is = is; 54 } 55 56 64 public Reader create(InputStream is, String javaEncoding) 65 { 66 return null; 67 } 68 69 72 public int read() 73 throws IOException  74 { 75 return is.read(); 76 } 77 } 78 | Popular Tags |