首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

生成XML文档的时候怎么生成注释

2012-02-04 
生成XML文档的时候如何生成注释比如在生成的时候,要在顶上加上XML code?xml-stylesheet typetext/xsl

生成XML文档的时候如何生成注释
比如

在生成的时候,要在顶上加上 

XML code
<?xml-stylesheet type="text/xsl" title="XSL Formatting" href="show.xsl" media="all"?>


这句如何生成呢?谢谢

我使用的是JAVA

[解决办法]
DOM4J
XML code
        Document document = DocumentHelper.createDocument();        document.addProcessingInstruction("xml-stylesheet", "type=\"text/xsl\" title=\"XSL Formatting\" href=\"show_new_final.xsl\" media=\"all\""); 

热点排行