Solaris上使用weblogic服务器的特殊字符编码问题

时间:2011-05-05 14:24:28

标签: pdf character-encoding solaris special-characters apache-fop

我有一个使用fop和xslt生成PDF文件的应用程序。 §£?ÐÅÆ的特殊字符在PDF中显示为????

weblogic服务器正在solaris机器上运行。 我已经尝试了

<charset-params>
    <input-charset>
        <resource-path>/*</resource-path>
        <java-charset-name>UTF-8</java-charset-name>
    </input-charset>
    <charset-mapping>
     <iana-charset-name>UTF-8</iana-charset-name>
    <java-charset-name>UTF-8</java-charset-name>
 </charset-mapping>     
</charset-params> 
weblogic.xml中的

我也试过

transformer.setOutputProperty( OutputKeys.METHOD, "xml");
            transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2");
            transformer.setOutputProperty( OutputKeys.INDENT, "yes");
            transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");

那里似乎没有什么工作。

1 个答案:

答案 0 :(得分:0)

您是否设置了fop以查找包含这些字符的字体?例如,在Solaris 11上 使用fop(虽然没有使用weblogic)我必须在fop-conf.xml中设置字体路径:

<?xml version="1.0"?>
<!-- NOTE: This is the version of the configuration -->
<fop version="1.0">
  <renderers>
    <renderer mime="application/pdf">
      <fonts>
         <!-- register all the fonts found in a directory -->
         <directory>/usr/share/fonts/TrueType/core/</directory>
         <directory>/usr/share/fonts/TrueType/dejavu/</directory>
         <directory>/usr/share/fonts/TrueType/liberation/</directory>
         <directory>/usr/share/fonts/TrueType/unifont/</directory>

         <!-- register all the fonts found in a directory and all of its sub directories (use with care) -->
         <!-- directory recursive="true">C:\MyFonts2</directory -->

         <!-- automatically detect operating system installed fonts -->
         <auto-detect/>
      </fonts>
   </renderer>

   <renderer mime="application/postscript">
      <fonts>
         <directory>/usr/share/fonts/X11/Type1/</directory>
         <directory>/usr/share/ghostscript/fonts/</directory>
         <directory>/usr/share/fonts/TrueType/core/</directory>
         <directory>/usr/share/fonts/TrueType/dejavu/</directory>
         <directory>/usr/share/fonts/TrueType/liberation/</directory>
         <directory>/usr/share/fonts/TrueType/unifont/</directory>
      </fonts>
    </renderer>
</renderers>
</fop>

(旧版Solaris上的字体路径会有所不同。)

有关详细信息,请参阅: