- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我在 CMD 提示符下运行 .jar 文件时,出现以下错误:
C:\Users\Mikael\My Documents\NetBeansProjects\cs413CompilerProject\dist>
java -jar "cs413CompilerProject.jar" "C:\Users\Mikael\Documents\NetBeansProjects\cs413
CompilerProject\cs413Compiler\simple.x"
User's current working directory:
C:\Users\Mikael\My Documents\NetBeansProjects\cs413CompilerProject\dist
java.io.FileNotFoundException: lexer\setup\tokens
(The system cannot find the path specified)
Exception in thread "main" java.lang.NullPointerException
at lexer.setup.TokenSetup.initTokenClasses(TokenSetup.java:77)
at lexer.setup.TokenSetup.main(TokenSetup.java:35)
它所引用的代码是(从 TokenSetup.java 的第 24 行开始,到第 35 行结束):
24 public class TokenSetup {
25 private String type, value; // token type/value for new token
26 private int tokenCount = 0;
27 private BufferedReader in;
28 private PrintWriter table, symbols; // files used for new classes
29
30 /**
31 *
32 * @param args
33 */
34 public static void main(String args[]) {
35 new TokenSetup().initTokenClasses();}
然后是TokenSetup.initTokenClasses下的其他引用:
77 public void initTokenClasses() {
78 table.println("/*********************");
79 table.println("*");
80 table.println("* @Author Mikael M");
81 //... print a bunch of things
}
完整代码:
package lexer.setup;
import java.util.*;
import java.io.*;
//
///**
// * TokenSetup class is used to read the tokens from file <i>tokens</i>
// * and automatically build the 2 classes/files <i>TokenType.java</i>
// * and <i>Sym.java</i><br>
// * Therefore, if there is any change to the tokens then we only need to
// * modify the file <i>tokens</i> and run this program again before using the
// * compiler
//*/
public class TokenSetup {
private String type, value; // token type/value for new token
private int tokenCount = 0;
private BufferedReader in;
private PrintWriter table, symbols; // files used for new classes
/**
*
* @param args
*/
public static void main(String args[]) {
new TokenSetup().initTokenClasses();
}
TokenSetup() {
try {
System.out.println("User's current working directory: " + System.getProperty("user.dir"));
String sep = System.getProperty("file.separator");
in = new BufferedReader( new FileReader("lexer" + sep + "setup" + sep + "tokens"));
table = new PrintWriter(new FileOutputStream("lexer" + sep + "TokenType.java"));
symbols = new PrintWriter(new FileOutputStream("lexer" + sep + "Tokens.java"));
} catch (Exception e) {
System.out.println(e);
}
}
///**
// * read next line which contains token information;<br>
// * each line will contain the token type used in lexical analysis and
// * the printstring of the token: e.g.<br><ul>
// * <li>Program program</li>
// * <li>Int int</li>
// * <li>BOOLean boolean</li></ul>
// * @throws IOException
// */
public void getNextToken() throws IOException {
try {
StringTokenizer st = new StringTokenizer(in.readLine());
type = st.nextToken();
value = st.nextToken();
} catch (NoSuchElementException e) {
System.out.println("***tokens file does not have 2 strings per line***");
System.exit(1);
} catch (NullPointerException ne) {
throw new IOException("***End of File***");
}
tokenCount++;
}
///**
// * initTokenClasses will create the 2 files
//*/
public void initTokenClasses() {
table.println("/*********************");
table.println("*");
table.println("* @Author Mikael C. Miller");
table.println("*");
table.println("* SFSU 9/20/15");
table.println("*");
table.println("* CSc 413");
table.println("*");
table.println("*/");
table.println("package lexer;");
table.println(" ");
table.println("/**");
table.println(" * This file is automatically generated<br>");
table.println(" * it contains the table of mappings from token");
table.println(" * constants to their Symbols");
table.println("*/");
table.println("public class TokenType {");
table.println(" public static java.util.HashMap<Tokens,Symbol> tokens = new java.util.HashMap<Tokens,Symbol>();");
table.println(" public TokenType() {");
symbols.println("package lexer;");
symbols.println(" ");
symbols.println("/**");
symbols.println(" * This file is automatically generated<br>");
symbols.println(" * - it contains the enumberation of all of the tokens");
symbols.println("*/");
symbols.println("public enum Tokens {");
symbols.print(" BogusToken");
while (true) {
try {
getNextToken();
} catch (IOException e) {break;}
String symType = "Tokens." + type;
table.println(" tokens.put(" + symType +
", Symbol.symbol(\"" + value + "\"," + symType + "));");
if (tokenCount % 5 == 0) {
symbols.print(",\n "+ type);
} else {
symbols.print("," + type);
}
}
table.println(" }");
table.println("}");
table.close();
symbols.println("\n}");
symbols.close();
try {
in.close();
} catch (Exception e) {}
}
}
最佳答案
在TokenSetup
的构造函数中,抛出FileNotFound
异常,但除了将异常消息打印到System之外,您不执行任何操作.out
。然后,您的构造函数返回,就好像一切正常一样,您的 main()
函数继续对 TokenSetup
部分初始化的实例调用 initTokenClasses()
>。我什至不想去想结果会发生什么。我什至不打算调查它。这是无关紧要的。问题在于抛出的第一个异常,即 FileNotFound 异常。随后发生的 NullPointerException 是 red herring (Wikipedia) .
当你遇到异常时,你不能像什么都没发生一样继续进行。异常(exception)情况不能被掩盖。改为这样做:
public static void main(String args[]) throws Exception
和
TokenSetup() throws Exception
如果您不知道如何处理异常,请停止 try catch 异常。
这样,当抛出异常时,您的程序会立即停止,而不是继续向下运行并不可避免地抛出更多异常,从而使您感到困惑。
关于Java 空指针异常 : Tokenizing Input for Lexer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32905498/
我正在尝试从 https://github.com/antlr/grammars-v4/tree/master/mysql 处的 MySQL .g4 文件构建解析器和词法分析器。 。我收到错误“词法分
我正在学习 ANTLR4 并尝试使用词汇模式。如何让相同的标记出现在多个词法模式中?作为一个非常简单的例子,假设我的语法有两种模式,我想在这两种模式中匹配空格和行尾,例如我怎么能不以 WS_MODE1
我有一个扫描仪dice notation 使用以下扫描器 %option debug %option noyywrap %option yylineno %{ #include #includ
默认情况下,flex使用最长匹配规则。 有什么方法可以覆盖此行为以使其与最短序列匹配? 谢谢 最佳答案 Flex手册中的This page表示它没有任何非贪婪的运算符,因为它是扫描程序而不是解析程序,
我正在为tcpdump日志编写一个简单的解析器,能否请您告诉我为什么我无法获得正确的行号? %{ char str[80]; %} %option yylineno ... %% ^{HOURS}:{
我想在flex中制定一条规则,以使用像/ * * /这样的c样式注释 我有以下 c_comment "/*"[\n.]*"*/" 但是它永远不会匹配。知道为什么吗?如果您需要更多我的代码,请告诉我,我
解析数字和字符串是词法分析器的工作吗? 考虑到我在询问词法分析器是否应该解析输入这一事实,这可能听起来也可能不愚蠢。但是,我不确定这实际上是词法分析器的工作还是解析器的工作,因为为了正确地进行词法分析
我想为嵌套 block 语法编写一个简单 解析器,只是分层纯文本。例如: Some regular text. This is outputted as-is, foo{but THIS is ins
正在使用编译器,我想打印出符号表。我有一个节点结构,我需要访问全局变量“lineCount”。当我尝试在 idPush 函数中打印它时,出现段错误。我的目标是将节点放置在数组中或链接在一起,然后打印表
我正在寻求有关自定义构建的 Lexer 类并使用它来解析输入的帮助。我们的教授为我们的项目提供了一些框架代码,我们必须使用它。我的问题是,我们需要能够一次调用多个函数来对表进行排序和合并/排序单独表的
我正在尝试用 C# 编写一个非常简单的解析器。 我需要一个词法分析器——它可以让我将正则表达式与标记相关联,因此它会读取正则表达式并返回符号。 似乎我应该能够使用 Regex 来完成实际的繁重工作,但
我正在尝试使用 Antlr 4.7 创建具有多种模式的词法分析器。我的词法分析器目前是: ACTIONONLY : 'AO'; BELIEFS : ':Initial Beliefs:' ->
似乎有时 Antlr 词法分析器在标记字符流时对使用哪个规则做出了错误的选择......我试图弄清楚如何帮助 Antlr 做出显而易见的正确选择。我想像这样解析文本: d/dt(x)=a a=d/dt
这是八进制值的示例规则。我不想使用 YYTEXT,而是在结尾处获取值、字母和 # (8,...64)。我怎样才能得到它们?我猜 printf("%s", $1) 来看看我是否能得到这个值,但 lex
这种语法之间有什么区别: ... if_statement : 'if' condition 'then' statement 'else' statement 'end_if'; ... 和这个:
我使用 flex 在扫描仪上工作,将 \" 替换为 ";和 \\ 与 \。 所以我的代码是这样的 %% \\" \"; \\\ \\; 但是当我编译时,我收到一条错误消息,如 missin
根据manual YY_BUF_SIZE 是 16K 我们需要覆盖它。但是,手册没有指定如何覆盖它,我也找不到任何命令行选项。有人可以指出如何更改此设置。在生成的源代码中,YY_BUF_SIZE定义如
我有一个简单的“语言”,我正在使用 Flex(词法分析器),如下所示: /* Just like UNIX wc */ %{ int chars = 0; int words = 0; int lin
我正在使用 flex (词法分析器,而不是 Adobe Flex)在一个项目上。但是,我也希望能够在 Windows 平台上进行编译,但是 Windows version的最新版本只有 2.5.4
当我在 CMD 提示符下运行 .jar 文件时,出现以下错误: C:\Users\Mikael\My Documents\NetBeansProjects\cs413CompilerProject\d
我是一名优秀的程序员,十分优秀!