Java 扫描仪返回 null 但已过滤掉
Java Scanner returning null but already filtered out
public void process() throws InputMismatchException {
//System.out.println(code);
if(sc.findInLine("JP++") == null || sc.findInLine("START") == null){
throw new RuntimeException("Program has to start with 'JP++ _NAME_ START' ");
}
sc.nextLine();
while(sc.hasNext()){
if (sc.findInLine(Pattern.compile("JP......")) != "JP++ END" ){
Scanner r = sc;
if(!r.hasNextLine() || r.findInLine(Pattern.compile(".")) == null){
return;
}
System.out.println(sc.nextLine());
}
}
}
此代码是我目前正在处理的词法分析器的一部分。我已经过滤掉以防止扫描仪输出 null 它仍然输出:
hello
world
null
我的输入:" JP++ HELLO WORLD START \n hello \n world\n JP++ END"
我该如何解决这个问题
我刚刚测试了这段代码:
String input = " JP++ HELLO WORLD START \n hello \n world\n JP++ END";
Scanner sc = new Scanner(input);
if(sc.findInLine("JP++") == null || sc.findInLine("START") == null){
throw new RuntimeException("Program has to start with 'JP++ _NAME_ START' ");
}
sc.nextLine();
while(sc.hasNext()){
if (sc.findInLine(Pattern.compile("JP......")) != "JP++ END" ) {
Scanner r = sc;
if(!r.hasNextLine() || r.findInLine(Pattern.compile(".")) == null){
return;
}
System.out.println(sc.nextLine());
}
}
这实际上是您代码的复制和粘贴,除了输入(我也从您的 post 中逐字复制)和 Scanner 声明。它打印出
hello
world
没有空值。无论您的问题是什么,它都在别处。
编辑:正如@Pshemo 提到的,您也在比较错误的字符串。使用 .equals()
public void process() throws InputMismatchException {
//System.out.println(code);
if(sc.findInLine("JP++") == null || sc.findInLine("START") == null){
throw new RuntimeException("Program has to start with 'JP++ _NAME_ START' ");
}
sc.nextLine();
while(sc.hasNext()){
if (sc.findInLine(Pattern.compile("JP......")) != "JP++ END" ){
Scanner r = sc;
if(!r.hasNextLine() || r.findInLine(Pattern.compile(".")) == null){
return;
}
System.out.println(sc.nextLine());
}
}
}
此代码是我目前正在处理的词法分析器的一部分。我已经过滤掉以防止扫描仪输出 null 它仍然输出:
hello
world
null
我的输入:" JP++ HELLO WORLD START \n hello \n world\n JP++ END"
我该如何解决这个问题
我刚刚测试了这段代码:
String input = " JP++ HELLO WORLD START \n hello \n world\n JP++ END";
Scanner sc = new Scanner(input);
if(sc.findInLine("JP++") == null || sc.findInLine("START") == null){
throw new RuntimeException("Program has to start with 'JP++ _NAME_ START' ");
}
sc.nextLine();
while(sc.hasNext()){
if (sc.findInLine(Pattern.compile("JP......")) != "JP++ END" ) {
Scanner r = sc;
if(!r.hasNextLine() || r.findInLine(Pattern.compile(".")) == null){
return;
}
System.out.println(sc.nextLine());
}
}
这实际上是您代码的复制和粘贴,除了输入(我也从您的 post 中逐字复制)和 Scanner 声明。它打印出
hello
world
没有空值。无论您的问题是什么,它都在别处。
编辑:正如@Pshemo 提到的,您也在比较错误的字符串。使用 .equals()