W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
.mkdirs()可以建立多級(jí)文件夾, .mkdir()只會(huì)建立一級(jí)的文件夾, 如下:
File file=new File("/tmp/one/two/three");
file.mkdirs();
執(zhí)行后, 會(huì)建立tmp/one/two/three四級(jí)目錄
file..mkdir();
則不會(huì)建立任何目錄, 因?yàn)檎也坏?tmp/one/two目錄, 結(jié)果返回false
Java創(chuàng)建文件夾并上傳文件到該文件夾
import org.apache.commons.io.FileUtils;
import org.apache.struts2.ServletActionContext;
import com.opensymphony.xwork2.ActionContext;//jar包
//省略get/set方法
private String err = "";
private String msg; //返回信息
private File filedata; //上傳文件
private String filedataFileName; //文件名
//這里是上傳的路徑,獲取路徑用到是struts2的方法
String saveRealFilePath = ServletActionContext.getServletContext().getRealPath("/img");
System.out.println(saveRealFilePath );//打印上傳的路徑
File fileDir = new File(saveRealFilePath);
if (!fileDir.exists()) { //如果不存在 則創(chuàng)建
fileDir.mkdirs();
}
File savefile = new File(saveRealFilePath , filedataFileName);
try {
FileUtils.copyFile(filedata, savefile); //復(fù)制
} catch (IOException e) {
err = "錯(cuò)誤"+e.getMessage();
e.printStackTrace();
}
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: