检查一下IF ELSE的配对吧。

解决方案 »

  1.   

    if else没有匹配,代码太长 应该是多了个ELSE 或少了个IF, 要么就是括号方面出问题了  静下心来一点点的读 一点点的改吧
      

  2.   

    else if (path.equals("/ic"));
    改为
    else if (path.equals("/ic"))
      

  3.   

    else if (path.equals("/ic"));-->else if (path.equals("/ic"))
      

  4.   

    应该是if else 的匹配问题,仔细招招吧
      

  5.   

    if (path.equals("/bluehat"))已经对应了
    else if (path.equals("/ic"));
    怎么还能对应
    else
      outhtml.println("Please input the correct path!!! Thanks !!!<br>");
                
    这里不匹配。