/**
创建多级目录文件@param path 文件路径@throws IOException */
private void createFile(String path
) throws IOException
{
if (StringUtils
.isNotEmpty(path
)) {
File file
= new File(path
);
if (!file
.getParentFile().exists()) {
file
.getParentFile().mkdirs();
}
file
.createNewFile();
}
}
转载请注明原文地址:https://blackberry.8miu.com/read-28771.html