gpt4 book ai didi

安卓开发工具包。 HTTP POST 双变量

转载 作者:行者123 更新时间:2023-11-30 04:14:29 24 4
gpt4 key购买 nike

我正在尝试通过 http 请求发送 GPS 数据。

问题是 GPS 数据是 double 格式和 nameValuePair.add(new BasicNameValuePair(String, String)

不允许双重值。

如何发送 double 值或将 double 值转换为字符串?

谢谢,

httpclient client = new defaulthttpclient();
httppost post = new httppost("web address");
post.setEntity(new UrlencodedFormEntity(nameValuePairs));
httpresponse response = client.execute(post);

最佳答案

您可能需要使用两个 nameValuePairs 分别发送纬度和经度:

double latitude = currentLocation.getLatitude();
double longitude = currentLocation.getLongitude();
nameValuePairs.add(new BasicNameValuePair("latitude",Double.toString(latitude)));
nameValuePairs.add(new BasicNameValuePair("longitude",Double.toString(longitude)));

关于安卓开发工具包。 HTTP POST 双变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10264168/

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