Android InputStream Encoding Get getStreamEncoding(InputStream is)

Here you can find the source of getStreamEncoding(InputStream is)

Description

get Stream Encoding

Declaration

public static String getStreamEncoding(InputStream is)
        throws IOException 

Method Source Code

//package com.java2s;

import java.io.*;

public class Main {

    public static String getStreamEncoding(InputStream is)
            throws IOException {
        BufferedInputStream bis = new BufferedInputStream(is);
        bis.mark(2);//  ww  w .j  a  va 2s. c om
        byte[] first3bytes = new byte[3];
        bis.read(first3bytes);
        bis.reset();
        String encoding = null;
        if (first3bytes[0] == (byte) 0xEF && first3bytes[1] == (byte) 0xBB
                && first3bytes[2] == (byte) 0xBF) {
            encoding = "utf-8";
        } else if (first3bytes[0] == (byte) 0xFF
                && first3bytes[1] == (byte) 0xFE) {
            encoding = "unicode";
        } else if (first3bytes[0] == (byte) 0xFE
                && first3bytes[1] == (byte) 0xFF) {
            encoding = "utf-16be";
        } else if (first3bytes[0] == (byte) 0xFF
                && first3bytes[1] == (byte) 0xFF) {
            encoding = "utf-16le";
        } else {
            encoding = "GBK";
        }
        return encoding;
    }
}

Related

  1. getStreamEncoding(InputStream is)
  2. getEncodingFromHTML(InputStream is)