Class EncodingConversionManager


  • public class EncodingConversionManager
    extends java.lang.Object
    EncodingConversionManager maintains relationship between PDF encoding name and respective EncodingConverter instance. Those PDF encoding name like GBK-EUC-H should be converted to java charset name before constructing a java string instance
    Version:
    $Revision: 1.0 $
    Author:
    Pin Xue (http://www.pinxue.net), Holly Lee (holly.lee (at) gmail.com)
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static EncodingConverter getConverter​(java.lang.String encoding)
      Get converter from given encoding name.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getConverter

        public static final EncodingConverter getConverter​(java.lang.String encoding)
        Get converter from given encoding name. If no converted defined, a null is returned.
        Parameters:
        encoding - search for a converter for the given encoding name
        Returns:
        the converter for the given encoding name