如何从 Java 中的 XML-RPC 客户端获取 python 方法的字符串结果

发布于 2024-07-27 16:43:21 字数 354 浏览 7 评论 0原文

我写道:

Object result = (Object)client.execute("method",params);

在java客户端中。

实际上,结果应该以字符串格式打印。 但我只能输出“Object result”的地址,如何获取内容?

我尝试过 String result = (String)client.execute("method",params);

它说 lang.until.Object 无法转换为 lang.util.String。

由于服务器是用 Python 编写的,我想知道如何从该方法中检索 String。

I wrote:

Object result = (Object)client.execute("method",params);

in java client.

Actually, the result should be printed in string format. But I can only output the address of "Object result", how can I get the content?

And I have tried String result = (String)client.execute("method",params);

It says lang.until.Object can not cast to lang.util.String.

As the server is written in Python, I was wondering how can I retrieve String from the method.

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

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

发布评论

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

评论(2

断肠人 2024-08-03 16:43:21

我很犹豫是否要发布此内容,因为它看起来相当明显 - 如果您尝试过此操作,请原谅我,但是怎么样:

String result = (String)client.execute("method",params);

I'm hesitant to post this because it seems rather obvious - forgive me if you've tried this, but how about:

String result = (String)client.execute("method",params);
野の 2024-08-03 16:43:21

所以也许返回的对象不是字符串...您确定在 python 应用程序中返回字符串吗? 我严重怀疑这一点。

so maybe the object returned is not a string... are you sure that you're returning a string in your python application? I seriously doubt it.

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