写了个程序要用到SQLite,需要判断一下是否存在数据库文件……
File ZLD_DB=new File("ZLD_DB.db"); if (ZLD_DB.isFile()){ return true; }else{ return false; }
Java 判断文件是否存在
原文:https://www.cnblogs.com/CoronaZero/p/14612395.html