JAVA——JDOM生成xml,设置standalone属性

最近接手的新项目有个需求要求将需要的表数据将字段作为节点生成xml下载下来,把自己遇到的坑和大家分享一下。
话不多说,直接进入主题!

实现

引入jar包


	    org.jdom
	    jdom
	    1.1.3

实现代码

public void generateXML(@PathVariable("sourceId") String sourceId,HttpServletRequest request,HttpServletResponse response){
		DataSource dataSource = sourceManager.getEntityInfoByPk(Long.valueOf(sourceId));
		//col数据
		List colSource = sourceManager.getColBySource(Long.valueOf(sourceId));
		
		//设置日期格式
		SimpleDateFormat df = new SimpleDateFormat("yyyyMMddHHmmss");
		//获取当前系统时间
		String time = df.format(new Date());
		//文件名  =  当前时间+区划代码+数量+表名
		String fileName = time+"-13000-1-"+dataSource.getTableName().toLowerCase();
		//文件类型
        String fileType = "xml";
        
        response.setHeader("Content-Disposition", "attachment;filename=" + fileName + "." + fileType);
        response.setContentType("multipart/form-data");
        //2.将数据转为xml格式的字符串
        //根节点
        Element root = new Element((dataSource.getTableName()+"S").toLowerCase());
        Document document = new Document(root);
        //父节点
        Element element = new Element(dataSource.getTableName().toLowerCase());
        for (DataSourceColInfo dataSourceColInfo : colSource) {
        	//子节点
			element.addContent(new Element(dataSourceColInfo.getColNameEn().toLowerCase()).setText("1"));
		}
        root.addContent(element);
        
        //使xml文件 缩进效果
        Format format = Format.getPrettyFormat(); 
        format.setEncoding("gbk");
        
        // 创建XMLOutputter的对象
        XMLOutputter outputer = new XMLOutputter(format);
        String result = outputer.outputString(document);
        try {
            //3.将内容转为byte[]格式
            byte[] data = result.getBytes("gbk");
            
            //4.将内容写入响应流
            OutputStream out = response.getOutputStream();
            out.write(data);
            
            out.flush();
            out.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
	}

到这里一个xml就下载下来了,结果如下



  
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
  

但是并没有达到要求格式


jdom不支持standalone,那如何添加standalone在xml头里面了?
方法肯定是有的,重写XMLOutputter的printDeclaration方法

public class StandaloneXML extends XMLOutputter{
	private Format userFormat = Format.getRawFormat();
    protected static final Format preserveFormat = Format.getRawFormat();
    protected Format currentFormat = this.userFormat;
   
    public StandaloneXML() {
        super();
    }

    public StandaloneXML(Format format) {
        super(format);
    }

    public StandaloneXML(XMLOutputter that) {
        super(that);
    }

    protected void printDeclaration(Writer out, Document doc, String encoding)
            throws IOException {
        if (!(this.userFormat.getOmitDeclaration())) {
            out.write("");

            out.write(currentFormat.getLineSeparator());
        }
    }
}

然后在controller层掉用

// 创建XMLOutputter的对象
XMLOutputter outputer = new XMLOutputter(format);
String result = outputer.outputString(document);

换成

//重写了printDeclaration方法,解决xml生成时没有standalone属性
StandaloneXML cxXmlOut = new StandaloneXML(format);
String result = cxXmlOut.outputString(document);

到这里就达到了格式要求



  
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
  

你可能感兴趣的:(JAVA——JDOM生成xml,设置standalone属性)