使用包含属性的 Properties 创建 KSOAP 请求

发布于 2024-10-27 09:10:56 字数 280 浏览 3 评论 0原文

有没有一种简单的方法可以使用 KSOAP2 for Android 创建一个请求,该请求包含本身包含属性的属性,而无需创建序列化的类?

请求应该包含某事。喜欢

<Code>
     <OwnProperty firstAttribute="1stAttr" secondAttribute="2ndAttr"> propertyValue</OwnProperty>
</Code>

任何帮助表示赞赏, 里戈罗斯

is there an easy way to create a request with KSOAP2 for Android that contains Properties that themselves contain Attributes, without creating an class that gets serialized?

The Request should contain sth. like

<Code>
     <OwnProperty firstAttribute="1stAttr" secondAttribute="2ndAttr"> propertyValue</OwnProperty>
</Code>

Any help is appreciated,
Rigoroth

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

花伊自在美 2024-11-03 09:10:56

SoapObject 请求 = new SoapObject(命名空间,方法名称);
request.addAtribute("姓名","彼得");

我想你需要这些,抱歉我迟到了

SoapObject request = new SoapObject(Namespace,MethodName);
request.addAtribute("name","peter");

i think is these you need sorry i'm late

不美如何 2024-11-03 09:10:56

我认为如果不实现 KVSeriazable 这是不可能的

I don't think thats possible without implementing KVSeriazable

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文