在 Java 中将 XML-RPC 生成为字符串

发布于 2024-11-07 13:11:43 字数 623 浏览 0 评论 0原文

这就是我想要做的:我有一个方法名称和参数类型,并且我希望将 XML-RPC 作为字符串(而不是发送它!)。

像这样... String someGreatThing.generate("bla.doStuff", String, int) 这就是我想要的:

<?xml version="1.0"?>
 <methodCall>
   <methodName>bla.doStuff</methodName>
   <params>
     <param>
       <value><string></string></value>
     </param>
     <param>
       <value><int></int></value>
     </param>
   </params>
 </methodCall>

我只需要字符串。

知道某个图书馆是否可以做到这一点吗?最好是来自 Apache 的 XML-RPC 库,因为无论如何我都会使用它们。

谢谢你!

This is what I want to do: I have a method name and parameter types and I want to have the XML-RPC as a String (and not send it!).

Like this... String someGreatThing.generate("bla.doStuff", String, int) and this is what I want to have then:

<?xml version="1.0"?>
 <methodCall>
   <methodName>bla.doStuff</methodName>
   <params>
     <param>
       <value><string></string></value>
     </param>
     <param>
       <value><int></int></value>
     </param>
   </params>
 </methodCall>

I just need the String.

Any idea if some library can do that? Preferably the XML-RPC libs from Apache, because I use them anyway.

Thank you!

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

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

发布评论

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

评论(1

念﹏祤嫣 2024-11-14 13:11:43

您可以使用 XStream 执行类似的操作: http://x-stream.github.io/ 。但它具有更通用的目的,而不是特定于 XML-RPC 的。

You can do something like that with XStream: http://x-stream.github.io/ . But it is more general purpose, not XML-RPC specific.

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