所以今天我想到了。我从我的JavaScript应用程序中已经存储在内存中的数据生成CSV,然后通过文件下载提示将这些数据泵送到用户的浏览器 - 全部使用JavaScript - 。
这可能吗?
答案 0 :(得分:2)
答案 1 :(得分:1)
通过javascript下载本地/客户端内容的解决方案并不简单。我使用smartclient-html-jsp实现了一个解决方案。
以下是解决方案:
//代码开始
<%@ page import="java.util.*,java.io.*,java.util.Enumeration"%>
<%
response.setContentType ("text/csv");
//set the header and also the Name by which user will be prompted to save
response.setHeader ("Content-Disposition", "attachment;filename=\"data.csv\"");
String contents = request.getParameter ("text");
if (!(contents!= null && contents!=""))
contents = "No data";
else
contents = contents.replaceAll ("NEW_LINE", "\n");
//Open an input stream to the file and post the file contents thru the
//servlet output stream to the client m/c
InputStream in = new ByteArrayInputStream(contents.getBytes ());
ServletOutputStream outs = response.getOutputStream();
int bit = 256;
int i = 0;
try {
while ((bit) >= 0) {
bit = in.read();
outs.write(bit);
}
//System.out.println("" +bit);
} catch (IOException ioe) {
ioe.printStackTrace(System.out);
}
outs.flush();
outs.close();
in.close();
%>
<HTML>
<HEAD>
</HEAD>
<BODY>
</BODY>
</HTML>
//代码结束
此代码在生产环境中经过测试和部署/工作,这也是跨浏览器功能。
由于 SHAILENDRA
答案 2 :(得分:0)
如果您的服务器设置为触发给定MIME类型的下载,那么您只需直接location.href = 'myFile.csv'
。
这将提示用户按照您的意愿打开或保存文件。
这确实要求您的服务器配置为以这种方式运行。