当我尝试执行请求时出现IllegalArgumentException



在我的代码中,我在执行对服务器的请求的行中捕获了IllegalArgumentException(索引85处查询中的非法字符)。使用构建为模式命令,另一个任务完成正确但不是这样:

public CreateCommentTask(String barcodeId, String ball, String comment,
        String sign) {
    super(getApplicationUrl() + "?command=createComment" + "&barcodeId="
            + barcodeId + "&ball=" + ball + "&text=" + comment
            + "&sessionId=" + sign);
    // TODO Auto-generated constructor stub
}

所以,我只有地址和一些字符串格式的数据。我的应用程序在这一行崩溃:

HttpResponse response = client.execute(task.createRequest());

你有什么想法吗?

我希望您需要对参数(很可能是comment变量)进行URL编码。

EDIT:您可以使用java.net.URI来生成正确的查询。试试这个:

super(new URI(getApplicationUrl() + "?command=createComment" + "&barcodeId="
            + barcodeId + "&ball=" + ball + "&text=" + comment
            + "&sessionId=" + sign).toString());

为什么不预先构建字符串并记录它?然后你可以看到字符85是什么。如果日志上是这样写的,我保证问题是存在的。如果您不知道原因,请将生成的字符串与日志的其余部分一起发布。

public CreateCommentTask(String barcodeId, String ball, String comment,
        String sign) {
    String query = getApplicationUrl() + "?command=createComment" + "&barcodeId="
            + barcodeId + "&ball=" + ball + "&text=" + comment
            + "&sessionId=" + sign;
    Log.d("HOLYCRAP", query);
    super(query);
}

相关内容

  • 没有找到相关文章

最新更新