|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
最后我再次声明,我并没有说不看好java,实际上我对java很乐观的,毕竟她正在不断改进中,我相信她总有一天会和.net并驾齐驱的js|word|对象|下载
<%@pageimport="java.util.*"%>
<%@pageimport="java.io.*"%>
<%@pageimport="java.net.*"%>
<%
Stringfilename="";
if(request.getParameter("file")!=null){
filename=request.getParameter("file");
}
response.setContentType("application/msword");
response.setHeader("Content-disposition","attachment;filename="+filename);
BufferedInputStreambis=null;
BufferedOutputStreambos=null;
try{
bis=newBufferedInputStream(newFileInputStream(getServletContext().getRealPath(""+filename)));
bos=newBufferedOutputStream(response.getOutputStream());
byte[]buff=newbyte[2048];
intbytesRead;
while(-1!=(bytesRead=bis.read(buff,0,buff.length))){
bos.write(buff,0,bytesRead);
}
}catch(finalIOExceptione){
System.out.println("呈现IOException."+e);
}finally{
if(bis!=null)
bis.close();
if(bos!=null)
bos.close();
}
return;
%>
ruby里有这些工具吗?又要简单多少?我没有用过这两门语言,我估计在这些语言力没有很统一的这种标准,或者根本就没有提供。 |
|