Java InputStreamReader Create getReader(final InputStream is)

Here you can find the source of getReader(final InputStream is)

Description

get Reader

License

Apache License

Declaration

private static Reader getReader(final InputStream is) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

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

public class Main {
    private static Reader getReader(final InputStream is) {
        final Reader result = new InputStreamReader(is);
        return result;
    }/*  w w w . j  av  a 2  s . c om*/
}

Related

  1. getReader(final File file)
  2. getReader(String name, String extension)
  3. getReaderForFile(IFile file)
  4. readTextFile(File f)
  5. readTextFile(File f)