当前位置: 首页 > 工具软件 > Xerces2-J > 使用案例 >

将XercesJ 2.9.0的所有功能编译到一个JAR文件中

聂和宜
2023-12-01

目标: 将XercesJ 2.9.0的所有功能编译到一个JAR文件中

1. 从 http://xerces.apache.org/xerces2-j/ 下载如下文件
  Xerces-J-bin.2.9.0.zip (非debug版本,xml-apis.jar单独一个jar文件)
  Xerces-J-src.2.9.0.zip
  Xerces-J-tools.2.9.0.zip

2.解压缩如下文件到$XercesJRoot目录下,产生 $XercesJRoot/xerces-2_9_0目录
  Xerces-J-src.2.9.0.zip
  Xerces-J-tools.2.9.0.zip

3.打开$XercesJRoot/xerces-2_9_0/build.xml文件设置编译选项

  3.1 开发时最好选择编译debug版本,以方便调试
      <property name="debug" value="on"/>
       <property name="optimize" value="off"/>
      
  3.2 期望将所需要的类文件全部打包到一个xerces.jar文件
    其 deprecatedjar 目标本来是要实现此期望的,但是由于在compile目标中去除了$XercesJRoot/xerces-2_9_0/tools/xml-commons-external-src.zip中解开的源文件的编译,所以最终生成的xerces.jar文件仍然不包括xml-apis.jar的内容(xml-commons-external-src.zip编译获得),所以导致了仍然需要两个jar文件: xerces.jar 和 xml-apis.jar
    
    因此需要修改compile 目标: 去掉其excludes选项即可
    
4.编译构建
 
 在$XercesJRoot/xerces-2_9_0/目录下执行:
 
 4.1 编译源码,产生单一的XercesJ库文件: $XercesJRoot/xerces-2_9_0/build/xerces.jar
  xerces-2_9_0> build.bat deprecatedjar
 

 类似资料: