我正在尝试连接到远程FTP服务器以删除超过14天的文件
我申请的脚本是
Scanner lineScanner = new Scanner(fileName);
while(file.hasNextLine()){
String line = lineScanner.nextLine();
// parse the line
Scanner sc = new Scanner(line);
String firstName = sc.next();
String lastName = sc.next();
int year = sc.nextInt();
int month = sc.nextInt();
int day = sc.nextInt();
String classYear = sc.next();
sc.close();
// use the variables
// ...
}
file.close();
但是我遇到了错误:
未知的切换'文件掩码'。
我想知道我在这里做错了什么?
谢谢&的问候,