在java中使用scanner评估sql文件

时间:2014-04-26 07:07:03

标签: java sql using

我必须使用java中的scanner类来评估SQL文件的正确语法。这怎么可能?到目前为止我遵循的步骤:

File text = new File("C:/Users/Desktop/sample.sql");
Scanner scnr = new Scanner(text);
while(scnr.hasNextLine()){
    String line = scnr.nextLine();
}

0 个答案:

没有答案