详细格式化程序错误:评估必须包含表达式或格式良好的语句块

时间:2018-05-25 12:00:31

标签: java eclipse text-files

我在调试模式时遇到以下错误:

详细格式化程序错误: 评估必须包含表达式或格式良好的语句块

代码示例:

   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

我做错了吗?

1 个答案:

答案 0 :(得分:0)

解决方案:

String[] parts = content.split("\\.");