Class Charsets

java.lang.Object
org.apache.commons.net.util.Charsets

public class Charsets extends Object
Helps to deal with Charsets.
Since:
3.3
  • Constructor Details

  • Method Details

    • toCharset

      public static Charset toCharset(String charsetName)
      Returns a charset object for the given charset name.
      Parameters:
      charsetName - The name of the requested charset; may be a canonical name, an alias, or null. If null, return the default charset.
      Returns:
      A charset object for the named charset
    • toCharset

      public static Charset toCharset(String charsetName, String defaultCharsetName)
      Returns a charset object for the given charset name.
      Parameters:
      charsetName - The name of the requested charset; may be a canonical name, an alias, or null. If null, return the default charset.
      defaultCharsetName - the charset name to use if the requested charset is null
      Returns:
      A charset object for the named charset