openday light netconf testtool模拟器启动报错
Error in starting openday light netconf testtool simulator
While starting open daylight netconf test tool simulator I am getting the following error:
"java -jar netconf-testtool-1.5.0-SNAPSHOT-executable.jar --device-count 2 --schemas-dir yangs/"
线程异常 "main" java.lang.NullPointerException
at java.util.regex.Matcher.getTextLength(Matcher.java:1283)
at java.util.regex.Matcher.reset(Matcher.java:309)
at java.util.regex.Matcher.<init>(Matcher.java:229)
at java.util.regex.Pattern.matcher(Pattern.java:1093)
at org.opendaylight.netconf.test.tool.TesttoolParameters.validate(TesttoolParameters.java:316)
at org.opendaylight.netconf.test.tool.Main.main(Main.java:58)
我可以用其他一些 yang 文件启动它,但不能用这个特定的 yang 文件。可能是什么问题导致的?
看看源码:
final Matcher matcher = YANG_FILENAME_PATTERN.matcher(file.getName());
if (!matcher.matches()) {
try (BufferedReader reader = new BufferedReader(new FileReader(file))) {
String line = reader.readLine();
while (!DATE_PATTERN.matcher(line).find()) { <--- Line 316
line = reader.readLine();
}
...
}
}
正在尝试确保 yang 文件有修订日期。如果它不在 yang 文件名中,那么它会打开文件并搜索修订日期。它炸毁了 b/c 它到达了 EOF 却没有找到它。这是我阅读源代码的结果——假设我是正确的,那么要么用有效的修订重命名有问题的文件,要么向 yang 添加修订声明。
While starting open daylight netconf test tool simulator I am getting the following error:
"java -jar netconf-testtool-1.5.0-SNAPSHOT-executable.jar --device-count 2 --schemas-dir yangs/"
线程异常 "main" java.lang.NullPointerException
at java.util.regex.Matcher.getTextLength(Matcher.java:1283)
at java.util.regex.Matcher.reset(Matcher.java:309)
at java.util.regex.Matcher.<init>(Matcher.java:229)
at java.util.regex.Pattern.matcher(Pattern.java:1093)
at org.opendaylight.netconf.test.tool.TesttoolParameters.validate(TesttoolParameters.java:316)
at org.opendaylight.netconf.test.tool.Main.main(Main.java:58)
我可以用其他一些 yang 文件启动它,但不能用这个特定的 yang 文件。可能是什么问题导致的?
看看源码:
final Matcher matcher = YANG_FILENAME_PATTERN.matcher(file.getName());
if (!matcher.matches()) {
try (BufferedReader reader = new BufferedReader(new FileReader(file))) {
String line = reader.readLine();
while (!DATE_PATTERN.matcher(line).find()) { <--- Line 316
line = reader.readLine();
}
...
}
}
正在尝试确保 yang 文件有修订日期。如果它不在 yang 文件名中,那么它会打开文件并搜索修订日期。它炸毁了 b/c 它到达了 EOF 却没有找到它。这是我阅读源代码的结果——假设我是正确的,那么要么用有效的修订重命名有问题的文件,要么向 yang 添加修订声明。