Java Text File Read by Charset getReader(InputStream is, String charset)

Here you can find the source of getReader(InputStream is, String charset)

Description

get Reader

License

Apache License

Declaration

public static BufferedReader getReader(InputStream is, String charset) 

Method Source Code


//package com.java2s;
/*//from  w ww.  j  a  va  2  s  .co m
 * Copyright 2012 Evgeny Dolganov (evgenij.dolganov@gmail.com).
 *
 * Licensed 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.
 */

import java.io.BufferedReader;

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

import java.nio.charset.Charset;

public class Main {
    public static BufferedReader getReader(InputStream is, String charset) {
        return new BufferedReader(new InputStreamReader(is, Charset.forName(charset)));
    }
}

Related

  1. createReader(Path p, Charset cs)
  2. getDecoder(Charset charset, ThreadLocal> localDecoder)
  3. getFileContent(IFile file, String charset)
  4. getInputStreamReader(InputStream stream, Charset charset)
  5. getReader(InputStream in, String charsetName)
  6. getReader(String fileName, Charset cs)
  7. getReader(String path, Charset encoding)
  8. inferCharset(byte[] bytes, int bytesRead, Charset clientCharset)
  9. initDecoder(Charset charset, ThreadLocal> localDecoder)