這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)java判斷抽象路徑名是否為文件的方法,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
創(chuàng)新互聯(lián)建站是一家專注于成都做網(wǎng)站、網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設(shè)與策劃設(shè)計,土默特左旗網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)建站做網(wǎng)站,專注于網(wǎng)站建設(shè)十余年,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:土默特左旗等地區(qū)。土默特左旗做網(wǎng)站價格咨詢:13518219792
java.io.File.isFile() 檢查表示此抽象路徑名的文件是否是一個正常的文件。表示此抽象路徑名的文件是一個文件,該方法返回true,否則該方法返回false。
異常
SecurityException -- 如果安全管理器存在并且其SecurityManager.checkRead(java.lang.String) 方法拒絕對文件的讀訪問
例子
下面的示例演示java.io.File.isFile()方法的用法。
package com.test; import java.io.File; public class FileDemo { public static void main(String[] args) { File f = null; String path; boolean bool = false; try{ // create new file f = new File("c:"); // true if the file path is a file, else false bool = f.isFile(); // get the path path = f.getPath(); // prints System.out.println(path+" is file? "+ bool); // create new file f = new File("c:/test.txt"); // true if the file path is a file, else false bool = f.isFile(); // get the path path = f.getPath(); // prints System.out.print(path+" is file? "+bool); }catch(Exception e){ // if any error occurs e.printStackTrace(); } } }
讓我們編譯和運(yùn)行上面的程序,這將產(chǎn)生以下結(jié)果:
c: is file? false c:est.txt is file? true
上述就是小編為大家分享的java判斷抽象路徑名是否為文件的方法了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。