
发表:10-05-18 23:19
注册:10-05-18 23:11
|
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();
|