สารบัญ
ชวา ชื่อไฟล์,เส้นทางไฟล์จากส่วนขยายรับ
ในชวาชื่อไฟล์จากส่วนขยายนี่คือแหล่งตัวอย่างที่จะได้รับ
โปรแกรมตัวอย่าง
/** * ส่งกลับนามสกุลจากชื่อไฟล์ * @param fileName ชื่อไฟล์ * @return นามสกุลไฟล์ */ public static String getSuffix(String fileName) { if (fileName == null) return null; int point = fileName.lastIndexOf("."); if (point ! = - 1) { return fileName.substring(point + 1); } return fileName; }
ผลการดำเนินการ
◆ตัวอย่างการดำเนินการ
/** * ตัวอย่างการดำเนินการ * @param args */ public static void main(String[] args) { String ret1 = getSuffix("test.html"); System.out.println(ret1); String ret2 = getSuffix(" C:\\test.html"); System.out.println(ret2); }
◆ผลลัพธ์เอาท์พุต
html html