91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java文件路徑實例分析

發布時間:2022-01-12 09:25:22 來源:億速云 閱讀:168 作者:柒染 欄目:編程語言

這篇文章給大家介紹Java文件路徑實例分析,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

1. ServletFilterServlet 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中配置好的路徑名稱。

2) 讀取JAVA文件的簡單例子

// 將數據讀入字符列表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();


3) Hash MAP的遍歷

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 );
}


4) 如何獲取當前時間

import java.text.SimpleDateFormat;import java.util.Date;
Date today = new Date();
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");
return df.format(today);


5) 字符或主機形式IP地址轉換為整型

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文件路徑實例分析就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

孟连| 河东区| 长宁县| 泸溪县| 南安市| 中超| 丰城市| 江川县| 延川县| 长海县| 延吉市| 习水县| 青岛市| 开封市| 柳河县| 平原县| 尼勒克县| 宜兰县| 资兴市| 济南市| 玉龙| 永仁县| 故城县| 元谋县| 富锦市| 藁城市| 无锡市| 蓬溪县| 临夏市| 上犹县| 连州市| 家居| 高邮市| 玉林市| 米易县| 陵川县| 德清县| 彭州市| 邓州市| 通山县| 固镇县|