程序的最后引用了一个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>
噼喱啪啦