java判断文件是否存在?

java判断文件是否存在?,第1张

java判断文件是否存在

1、判断文件是否存在,不存在创建文件

File file=new File("C:\\Users\\QPING\\Desktop\\JavaScript\\2.htm")

if(!file.exists())

{

try {

file.createNewFile()

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace()

}

}

2、判断文件夹是否存在,不存在创建文件夹

File file =new File("C:\\Users\\QPING\\Desktop\\JavaScript")

//如果文件夹不存在则创建

if  (!file .exists()  && !file .isDirectory())

{

System.out.println("//不存在")

file .mkdir()

} else

{

System.out.println("//目录存在")

}

IsExstsFile(yourFileURL) {

var flag

var xmlhttp

if(window.XMLHttpRequest)

{

xmlhttp = new XMLHttpRequest()//其他浏览器

}

else if (window.ActiveXObject)

{

try {

xmlhttp = new ActiveXObject("Msxml2.XMLHTTP")//旧版IE

}

catch (e) { }

try {

xmlhttp = new ActiveXObject("Microsoft.XMLHTTP")//新版IE

}

catch (e) { }

if (!xmlhttp) {

window.alert("不能创建XMLHttpRequest对象")

}

}

xmlhttp.open("GET",yourFileURL,false)

xmlhttp.send()

if(xmlhttp.readyState==4){

if(xmlhttp.status==200)

flag =true

else

flag =false

}

return flag

},


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11744332.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存