gpt4 book ai didi

java - Http 获取异常目标主机在 ICS 上不能为空

转载 作者:太空宇宙 更新时间:2023-11-03 11:59:42 25 4
gpt4 key购买 nike

我在 ICS 上遇到此异常,而在 2.2 上运行正常。

java.lang.IllegalStateException: Target host must not be null, or set in parameters. scheme=null, host=null, path=http://maps.googleapis.com/maps/api/geocode/json?latlng=32.0692342,34.7952296&sensor=true

这是我的代码:

        HttpGet request = new HttpGet(URLEncoder.encode(requestUrl, "UTF-8"));
HttpResponse response;
response = mHttpClient.execute(request);

最佳答案

删除URLEncoder.encode调用,不需要

需要对url参数进行编码,例如:

String url = "http://maps.googleapis.com/maps/api/geocode/json?latlng="+URLEncoder.encode("32.0692342,34.7952296")+"&sensor="+URLEncoder.encode("true")

关于java - Http 获取异常目标主机在 ICS 上不能为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12936248/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com