Java Charset Create getCharset()

Here you can find the source of getCharset()

Description

get Charset

License

Open Source License

Declaration

public static Charset getCharset() 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.nio.charset.Charset;

public class Main {
    private static Charset _charset = Charset.defaultCharset();

    public static Charset getCharset() {
        return _charset;
    }//from   w ww  .j a v a  2s . c o  m
}

Related

  1. getCanonicalCharset(String charset)
  2. getCanonicalCharset(String charset)
  3. getCharset()
  4. getCharset(int cpgid, int gcsgid)
  5. getCharset(int ibmCharacterSetId)
  6. getCharSet(String charset)