为了账号安全,请及时绑定邮箱和手机立即绑定

JavaWeb response对象

JavaWeb response对象

慕粉4349795 2017-05-23 21:14:24
程序的最后引用了一个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>
查看完整描述

1 回答

?
噼喱啪啦

TA贡献392条经验 获得超170个赞

把文件放在项目下就可以了,你使用的是相对路径,文件就放在 webroot/score.txt

也可以使用绝对路径。

查看完整回答
反对 回复 2017-05-25
  • 1 回答
  • 0 关注
  • 1825 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信