-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScanner.java
43 lines (32 loc) · 862 Bytes
/
Scanner.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
* Ethan Mines
* CS503 - Lusth
*/
import java.io.PushbackInputStream;
import java.io.FileInputStream;
public class Scanner {
public static void main(String[] args) {
if (args.length < 1) {
System.err.println("Usage: java Scanner <source_file>");
return;
}
final String path = args[0];
try (PushbackInputStream in = new PushbackInputStream(new FileInputStream(path))) {
Lexer lexer = new Lexer(in);
Lexeme lexeme = lexer.lex();
while (lexeme.type != Type.EOF) {
System.out.println(lexeme.lexString());
lexeme = lexer.lex();
}
}
catch (LexException e) {
System.out.println(e.getMessage());
}
catch (java.io.FileNotFoundException e) {
System.out.printf("The file %s does not exist.", path);
}
catch (java.io.IOException e) {
System.out.println("An error closing the file occurred.");
}
}
}