程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 請教一個jsp絕對路徑和相對路徑的問題

請教一個jsp絕對路徑和相對路徑的問題

編輯:關於JSP

<%@ page import="java.io.*"%>
<%! class Filejsp(SUN企業級應用的首選) implements FilenameFilter
{
 String str=null;
 Filejsp(SUN企業級應用的首選)(String s)
 {
  str="."+s;
 }
 public boolean accept(File dir,String name)
 {
  return name.endsWith(str);
 }
}
%>
<BODY bgcolor=cyan><FONT size=3>
<p> there are list all the file of .jsp(SUN企業級應用的首選) in the document
<%File dir=new File("c:/test");
Filejsp(SUN企業級應用的首選) file_jsp(SUN企業級應用的首選)=new Filejsp(SUN企業級應用的首選)("jsp(SUN企業級應用的首選)");
String file_name[]=dir.list(file_jsp(SUN企業級應用的首選));
for(int i=0;i<file_name.length;i++)
{
 out.print("<BR>"+file_name[i]);
}
%>
<p> please input jsp(SUN企業級應用的首選) file name,in order to load this file:
<FORM action="loadfile.jsp(SUN企業級應用的首選)" method=post name=form>
<input type="text" name="ok">
<BR>
<input type="submit" value="send" name=submit>
</form>
<%--here: --%> <%String fileName="";

fileName=fileName+request.getParameter("ok");
%>
<p>Excuete :<%=fileName%>
<p>the result is:

<jsp(SUN企業級應用的首選):include page="<%= fileName%>"/>//此處加載的是當前工作目錄的文件,可以執行。可如果想
//加載指定了絕對路徑的目錄的文件為什麼不可以?
//比如:here處改為:
//<%String fileName="c:/jsp(SUN企業級應用的首選)/",輸入文件名點擊加載,根本就沒有
//加載指定文件,請高手指教!!!

</BODY>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved