我在调试模式时遇到以下错误:
详细格式化程序错误: 评估必须包含表达式或格式良好的语句块
代码示例:
try {
content = new String(Files.readAllBytes(Paths.get(inputFile)));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
String[] parts = content.split("."); //Here I get the above error
我做错了吗?
答案 0 :(得分:0)
解决方案:
String[] parts = content.split("\\.");