您好,登錄后才能下訂單哦!
這篇文章給大家介紹Java文件路徑實例分析,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
1. 在ServletFilter等Servlet web環境中,只要獲得javax.servlet.ServletContext類型,則可以通過 getRealPath("...") 獲得路徑。相對路徑中最頂層目錄可通過參數“"/"”獲取。
request.getSession().getServletContext().getRealPath("/");
2. JSP自定義標簽javax.servlet.jsp.tagext.TagSupport
((javax.servlet.ServletContext)pageContext).getRealPath("");
3. 普通Java Class對象文件中使用:
ServletContext servletContext = ServletActionContext.getServletContext();
String pathName = servletContext.getRealPath("/");
this.getClass().getResource("???");
如果Class文件在頂層目錄(包)中,且“???”為空白字符串(“""”),及此方法在jar文件中執行則會返回null。在頂層目錄(包)以下的各層目錄(包)則會返回包含協議的URL。各層文件夾(包)之間使用“/”分隔。
項目位置:C:project 目錄。
文件位置:C:projectTest.java
文件內容:
/* source begin. */ public class Test { public Test () { System.out.println(this.getClass().getResource("")); System.out.println(this.getClass().getResource(".")); System.out.println(this.getClass().getResource("/")); System.out.println(this.getClass().getResource("Test.class")); } 4) <%=request.getcontextpath()%> ServletActionContext.getRequest().getContextPath();
取得Tomcat中配置好的路徑名稱。
// 將數據讀入字符列表data內 char []data = new char[10240]; int num=file.read(data); // 將字符列表轉換成字符串 String str=new String(data,0,num); // 輸出在控制臺 System.out.println("Characters read= "+num); System.out.println(str); file.close();
Mapre … Iteratorit = ret.keySet().iterator(); while( it.hasNext() ) { String key = it.next(); String value = ret.get(key).toString(); System.out.println("Key:" + key ); System.out.println("Value:" + value ); }
import java.text.SimpleDateFormat;import java.util.Date; Date today = new Date(); SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd"); return df.format(today);
public static int inet_addr(String src) throws UnknownHostException { InetAddress address = InetAddress.getByName(src); int numeric_ip = 0; byte [] buf= address.getAddress(); if((buf != null)&&(buf.length == 4)) { numeric_ip= buf[3] & 0xFF; numeric_ip |= ((buf[2] << 8) & 0xFF00); numeric_ip |= ((buf[1] << 16) & 0xFF0000); numeric_ip |= ((buf[0] << 24) & 0xFF000000); } returnnumeric_ip; }
關于Java文件路徑實例分析就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。