to kofwr
配置文件里本身就有映射,不需要修改。
to ivaict
我做的东西也是在jsp中显示,我的总是出现下载提示框,不知道你的时候一样,。下面是我的程序,期望能交流一下
Servlet1.java
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;
public class Servlet1 extends HttpServlet {
static final private String CONTENT_TYPE = "application/msword";
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType(CONTENT_TYPE);
OutputStream out = response.getOutputStream();
FileInputStream fis = new FileInputStream("c:\\本人.doc");
int b = fis.read();
while(b!=-1){
out.write(b);
b = fis.
read();