标签: java android ksoap2 android-ksoap2
如何在ksoap2请求中添加double属性?
request.addProperty("doubleProperty", 1.0);
网上没有明确的答案。
答案 0 :(得分:3)
为了将double值作为请求参数发送,您需要使用Marshaling概念。
看看这个tutorial
我还发现this很有用。
尝试谷歌搜索有关Marshaling概念的更多信息
一切顺利
干杯