Java Charset Create getDefaultCharsetName()

Here you can find the source of getDefaultCharsetName()

Description

get Default Charset Name

License

Apache License

Declaration

private static String getDefaultCharsetName() 

Method Source Code

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

import java.nio.charset.Charset;

public class Main {
    private static String getDefaultCharsetName() {
        return Charset.defaultCharset().name();
    }/*from w  w w . j a  v a2 s . c om*/
}

Related

  1. getCharsetList(List availableCharsets, Charset actualCharset)
  2. getCharsetName(String location)
  3. getCharsetOrDefault(String charsetName)
  4. getDefaultCharset()
  5. getDefaultCharset()
  6. getDefaultSystemCharset()
  7. getEncodedStringLength(String str)
  8. getEncodedUrl(String unEncodedUrl)
  9. getEncoder()