1
我想通過目錄路徑串讀取文件, 例如,我想此方法返回相應的文件:如何獲得一個目錄路徑作爲輸入並從java中讀取該路徑中的文件?
文件讀取器(字符串pathFile){.... 返回文件;}
File reader(String pathFile){ return File;}
我想通過目錄路徑串讀取文件, 例如,我想此方法返回相應的文件:如何獲得一個目錄路徑作爲輸入並從java中讀取該路徑中的文件?
文件讀取器(字符串pathFile){.... 返回文件;}
File reader(String pathFile){ return File;}
:
File f = new File(directoryPath,filename);
f.createNewFile(); //to create a new file in the directory.surround with try and catch as it throws IOEXCEPTION
return f;
如果不存在,也可以使用f.mkdir()創建新目錄。