如何在没有中间文件存储的情况下下载XML文档?

时间:2013-06-27 18:10:35

标签: java xml file download

我有一个保存一个人数据的对象。当用户点击下载按钮时,xml需要由(person.dataitems)创建,之后用户应该有一个下载文件的选项(如保存文件或打开文件)

我编写了下面的代码,当单击按钮时会创建一个xml文件,但文件仍为空。我想知道如何将数据写入此文件然后下载。

response.setHeader( "Content-Disposition", "attachment;filename="+patient.getGivenName()+".xml");   
try {
    StringWriter r = new StringWriter();
    String ccdDoc = r.toString();
    ccdDoc = ccdDoc.replaceAll("&lt;", "<");
    ccdDoc = ccdDoc.replaceAll("&quot;", "\"");
    byte[] res = ccdDoc.getBytes(Charset.forName("UTF-8"));
    response.setCharacterEncoding("UTF-8");
    response.getOutputStream().write(res);
    response.flushBuffer();
} catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
} catch (Exception e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

感谢。

2 个答案:

答案 0 :(得分:4)

您必须写入StringWriter

import java.io.*;

public class StringWriterDemo {

   public static void main(String[] args) {

      String s = "Hello World";

      // create a new writer
      StringWriter sw = new StringWriter();

      // write portions of strings
      sw.write(s, 0, 4);
      sw.write(s, 5, 6);
      // write full string
      sw.write(s);

      // print result by converting to string
      System.out.println("" + sw.toString());


   }
}

不要这样做:

String ccdDoc = r.toString();

它只创建r字符串的副本。然后,您正在修改副本,但不是StringWriter

的所有内容

执行:

r.write("some content");

并访问编写者包含的字符串,执行:

String a_string = r.toString();
response.getOutputStream().write(a_string);

编辑:

好的,所以你所要求的并不是你所提供的链接中的内容,除了你必须写入StringWriter而不是File

这可以通过这种方式实现:

1)构建一个xml文档:

DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = docFactory.newDocumentBuilder();

// root elements
Document doc = docBuilder.newDocument();
Element rootElement = doc.createElement("company");
doc.appendChild(rootElement);

// staff elements
Element staff = doc.createElement("Staff");
rootElement.appendChild(staff);

// set attribute to staff element
staff.setAttribute("id", "1");

// firstname elements
Element firstname = doc.createElement("firstname");
firstname.appendChild(doc.createTextNode("yong"));
staff.appendChild(firstname);

:
:

// Then write the doc into a StringWriter

Transformer transformer = TransformerFactory.newInstance().newTransformer();
transformer.setOutputProperty(OutputKeys.INDENT, "yes");

//initialize StreamResult with StringWriter object to save to string
StreamResult result = new StreamResult(new StringWriter());
DOMSource source = new DOMSource(doc);
transformer.transform(source, result);

String xmlString = result.getWriter().toString();
System.out.println(xmlString);

// Finally, send the response

byte[] res = xmlString.getBytes(Charset.forName("UTF-8"));
response.setCharacterEncoding("UTF-8");
response.getOutputStream().write(res);
response.flushBuffer();


这里的重点是:

StreamResult result = new StreamResult(new StringWriter());

而不是:

StreamResult result = new StreamResult(new File("C:\\file.xml"));

你告诉我是否还有一些不清楚的事情。

答案 1 :(得分:0)

成功了

 byte[] res = xmlString.getBytes(Charset.forName("UTF-8"));
            response.setCharacterEncoding("UTF-8");
            response.setHeader( "Content-Disposition", "attachment;filename=archivo.xml");
            response.getOutputStream().write(res);
            response.flushBuffer();