File file=new File("/WebRoot/Log"); //输出到文件中
if(!file.exists()){
try {
file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
}
这是一个logUtil,webRoot 下是没有Log 文件夹的,要用相对路径创建文件夹,求解!!!!@wandal
File file=new File("/WebRoot/Log"); //输出到文件中
if(!file.exists()){
try {
file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
}
这是一个logUtil,webRoot 下是没有Log 文件夹的,要用相对路径创建文件夹,求解!!!!@wandal