|
阅读文章
文件上传问题
发表于09-06-08 13:03 | 阅读 594 |
评分 (暂无)
jsp有用户名,email等信息,在后台,怎样将这些信息以xml或者文本文档的格式保存到本地目录列?
试试输入输出流...
String result = "构建好你的XML内容"; response.setHeader("Pramga", "no-cache"); response.setHeader("Cache-Control", "no-cache"); OutputStream out = response.getOutputStream(); out.write(result.getBytes("GBK")); out.flush(); out.close();
|