Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我开发了一个小型 Java Web 应用程序,用户将在其中上传 XML 文件。用户提交表单后,使用 XSLT 将 XML 文件转换为 html 文件并保存在文件系统中。现在我想将此文件作为响应发送回客户端/用户。我怎样才能做到这一点 ?
读取文件的字节,并将它们发送到 HTTP 响应的输出流。您还应该将内容类型设置为text/html,并将内容长度设置为文件的长度。
text/html