/*

   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

 */
package org.apache.batik.util.io;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;

This class delegates to a reader the decoding of an input stream.
Author:Stephane Hillion
Version:$Id: GenericDecoder.java 1733416 2016-03-03 07:07:13Z gadams $
/** * This class delegates to a reader the decoding of an input stream. * * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @version $Id: GenericDecoder.java 1733416 2016-03-03 07:07:13Z gadams $ */
public class GenericDecoder implements CharDecoder {
The reader used to decode the stream.
/** * The reader used to decode the stream. */
protected Reader reader;
Creates a new GenericDecoder.
Params:
  • is – The input stream to decode.
  • enc – The Java encoding name.
/** * Creates a new GenericDecoder. * @param is The input stream to decode. * @param enc The Java encoding name. */
public GenericDecoder(InputStream is, String enc) throws IOException { reader = new InputStreamReader(is, enc); reader = new BufferedReader(reader); }
Creates a new GenericDecoder.
Params:
  • r – The reader to use.
/** * Creates a new GenericDecoder. * @param r The reader to use. */
public GenericDecoder(Reader r) { reader = r; if (!(r instanceof BufferedReader)) { reader = new BufferedReader(reader); } }
Reads the next character.
Returns:a character or END_OF_STREAM.
/** * Reads the next character. * @return a character or END_OF_STREAM. */
public int readChar() throws IOException { return reader.read(); }
Disposes the associated resources.
/** * Disposes the associated resources. */
public void dispose() throws IOException { reader.close(); reader = null; } }