从文件读取时,我在时间上有问题,因为在这种情况下使用的是扫描仪。 我输入了快速代码,但没有使用文件 所以我想在代码中添加文件或向我推荐使用文件的快速输入法
public class FastReader {
BufferedReader br;
StringTokenizer st;
public FastReader() {
br = new BufferedReader(new InputStreamReader(System.in));
}
String next() {
while (st == null || !st.hasMoreElements()) {
try {
st = new StringTokenizer(br.readLine());
} catch (IOException e) {
e.printStackTrace();
}
}
return st.nextToken();
}
int nextInt() {
return Integer.parseInt(next());
}
long nextLong() {
return Long.parseLong(next());
}
double nextDouble() {
return Double.parseDouble(next());
}
String nextLine() {
String str = "";
try {
str = br.readLine();
} catch (IOException e) {
e.printStackTrace();
}
return str;
}
}
答案 0 :(得分:0)
如注释中所建议,您可以通过向构造函数添加一个允许注入任何InputStream
的参数来修改类以处理文件输入:
public FastReader(InputStream in) {
br = new BufferedReader(new InputStreamReader(in));
}
然后您可以按以下方式使用阅读器:
FastReader systemInReader = new FastReader(System.in);
FastReader fileReader = new FastReader(new FileInputStream("/path/to/the/file"));