0

我似乎对netbeans上的这段代码有疑问,来自eclipse似乎很好

 for(int i = 0; i < shards.length();if
            JSONObject obj = shards.getJSONObject(i);
            try{
                page = http.GetPageContentUta(url1,ip);
                http.platform = (String)userClubList.getJSONObject(0).get("platform");
                break;

            }catch(Exception e){
                System.out.println("Exception");
            }

        }
4

2 回答 2

3

请学习语法,Java 中的 for 循环。你写的是错误的。来自 Eclipse 似乎很好不,没关系,语法错误适用于 Java 语言,而不适用于任何 IDE。

for(int i = 0; i < shards.length();if

将其更改为:

for(int i = 0; i < shards.length(); i++) {
     //Remaining if and other codes
}
于 2013-10-16T12:45:22.103 回答
1

您在定义 for 循环时忘记了括号。您也没有说明如何增加 i。

尝试

for(int i = 0; i < shards.length(); i++ ) {
    //code
}
于 2013-10-16T12:46:00.013 回答