<%@page contentType="text/html;charset=gb2312"inport="java.io.*"%>
<%
try{
InputStream in=getServletContext().getResourceAsStream("/test.doc");
String file="";
int temp=0;
while((temp=in.read())!=-1)
{
file+=(char)temp;
}
in.close;
out.println(new String(file.getBytes("iso-8859-1")));
out.flush();
}
catch(Exception e)
{
e.printStackTrance();
}
%>
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)
點(diǎn)擊舉報(bào)。