Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.io.*;

public class Main {
    public static final String SDK_TOOLS_ENCODING = "UTF-8";

    public static InputStreamReader createInputStreamReader(final InputStream inputStream) {
        try {
            return new InputStreamReader(inputStream, SDK_TOOLS_ENCODING);
        } catch (UnsupportedEncodingException e) {
            return new InputStreamReader(inputStream);
        }
    }
}