我正在尝试通过 http 请求发送 GPS 数据。
问题是 GPS 数据是双格式的,并且nameValuePair.add(new BasicNameValuePair(String, String)
不允许双值。
如何发送双精度值或将双精度值转换为字符串?
谢谢,
httpclient client = new defaulthttpclient();
httppost post = new httppost("web address");
post.setEntity(new UrlencodedFormEntity(nameValuePairs));
httpresponse response = client.execute(post);