你可以自己添加这个PACKAGE到你的环境呀!这个PACKAGE在www.apache.org有下载的!

解决方案 »

  1.   

    你去下载一个解析包:
    http://xml.apache.org/dist/ (下载安装xalan-j)
    或者到http://java.sun.com/xml/downloads/javaxmlpack.html
    下载SUN的JAXP包,安上
      

  2.   

    另外,你的程序中要加上:
    Properties properties = XXX.getOutputProperties();   
    properties.setProperty(OutputKeys.ENCODING,"GB2312"); 
    才能处理中文
      

  3.   

    XMLOutputter outp = new XMLOutputter(indent,newLines,"GBK");
    outp.output(doc, new FileOutputStream("exampleB.xml"));
      

  4.   

    请参阅http://www.csdn.net/Expert/TopicView1.asp?id=722635
    需要用Xalan(部分类JAXP已有)xml.apache.org