我是使用扫描仪逐行阅读器导入文件的新手。当我有导入文件时,它工作正常,但是其他一些系统(即同事系统)相同的项目和相同的数据库连接,同时导入文件错误,如Java.io.FileNotfoundException本地驱动器假路径目录(例如:“c:\fake path\db.sql”)。
public boolean checkfile(String dbfile){
File obj = new File(dbfile)
Scanner scr = new Scanner(obj );
try{
while(scr .hasNext()){
String scr_line = scr.nextLine();
System.out.println(scr_line );
}
}catch(Exception ex){
System.out.println(ex.tostring());
}
}
上面的代码File obj = new File(dbFile)
这行错误消息显示为Java.io.FileNotFoundException
local drive fake path directory 。任何人都可以帮助我在此代码上方犯错的地方。