org.apache.tika.utils
Class CharsetUtils

java.lang.Object
  extended by org.apache.tika.utils.CharsetUtils

public class CharsetUtils
extends Object


Constructor Summary
CharsetUtils()
           
 
Method Summary
static String clean(String charsetName)
          Handle various common charset name errors, and return something that will be considered valid (and is normalized)
static Charset forName(String name)
          Returns Charset impl, if one exists.
static boolean isSupported(String charsetName)
          Safely return whether is supported, without throwing exceptions
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CharsetUtils

public CharsetUtils()
Method Detail

isSupported

public static boolean isSupported(String charsetName)
Safely return whether is supported, without throwing exceptions

Parameters:
charsetName - Name of charset (can be null)
Returns:
true if the character set is supported

clean

public static String clean(String charsetName)
Handle various common charset name errors, and return something that will be considered valid (and is normalized)

Parameters:
charsetName - name of charset to process
Returns:
potentially remapped/cleaned up version of charset name

forName

public static Charset forName(String name)
Returns Charset impl, if one exists. This method optionally uses ICU4J's CharsetICU.forNameICU, if it is found on the classpath, else only uses JDK's builtin Charset.forName.



Copyright © 2007-2012 The Apache Software Foundation. All Rights Reserved.