JavaWeb response对象

程序的最后引用了一个txt文件,但是我把文件存在桌面上,提示错误,怎样才可以把txt文件弄到和程序同一个路径下边。


<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>

<%

String path = request.getContextPath();

String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

%>


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

  <head>

    <base href="<%=basePath%>">

    

    <title>My JSP 'show.jsp' starting page</title>

    

<meta http-equiv="pragma" content="no-cache">

<meta http-equiv="cache-control" content="no-cache">

<meta http-equiv="expires" content="0">    

<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">

<meta http-equiv="description" content="This is my page">

<!--

<link rel="stylesheet" type="text/css" href="styles.css">

-->


  </head>

  

  <body>

    <%

    String str1=request.getParameter("submit1");

    String str2=request.getParameter("submit2");

    if(str1==null){

    str1="";}

    if(str2==null){

    str2="";}

    if(str1.startsWith("word")){

    response.setContentType("application/msword;charset=gb2312");

    }

    if(str1.startsWith("excel")){

    response.setContentType("application/x-msexcel;charset=gb2312");

    }

     %>

    <jsp:include page="score.txt">

  </body>

</html>


慕粉4349795
浏览 1826回答 1
1回答

噼喱啪啦

把文件放在项目下就可以了,你使用的是相对路径,文件就放在 webroot/score.txt也可以使用绝对路径。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java
WebApp