Java 无法分析响应

Java 无法分析响应,java,wordpress,xml-rpc,Java,Wordpress,Xml Rpc,我在代码中使用redstone-xmlrpc-1.1.1 api,出现以下错误: redstone.xmlrpc.XmlRpcException: The response could not be parsed. at redstone.xmlrpc.XmlRpcClient.handleResponse(Unknown Source) at redstone.xmlrpc.XmlRpcClient.endCall(Unknown Source) at redston

我在代码中使用redstone-xmlrpc-1.1.1 api,出现以下错误:

redstone.xmlrpc.XmlRpcException: The response could not be parsed.

    at redstone.xmlrpc.XmlRpcClient.handleResponse(Unknown Source)
    at redstone.xmlrpc.XmlRpcClient.endCall(Unknown Source)
    at redstone.xmlrpc.XmlRpcClient.invoke(Unknown Source)
    at redstone.xmlrpc.XmlRpcProxy.invoke(Unknown Source)
    at net.bican.wordpress.$Proxy1.newMediaObject(Unknown Source)
    at net.bican.wordpress.Wordpress.newMediaObject(Wordpress.java:582)
    at WordpressPost.DataWordpressPost.DataPost(DataWordpressPost.java:53)
    at arrestcentral.ArrestData.readPdf(ArrestData.java:420)
    at arrestcentral.ArrestData.main(ArrestData.java:447)
Caused by: java.io.FileNotFoundException: http://www.arrestcentral.com/XMLrpc.php?
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1478)
    ... 9 more

有谁能帮我解释一下为什么我不能在wordpress上发表文章。

好吧,例外情况告诉你发生了什么-你试图获取

http://www.arrestcentral.com/XMLrpc.php?

。。。它给了您一个HTTP404(未找到)错误。您可能需要更改URL,但您应该比我们更清楚该URL应该是什么。

好吧,异常会告诉您发生了什么-您尝试获取的URL为

http://www.arrestcentral.com/XMLrpc.php?

。。。它给了您一个HTTP404(未找到)错误。您可能需要更改URL,但您应该比我们更清楚该URL应该是什么。

java.io.FileNotFoundException:?
应该给您一个线索:

在指定的URL上找不到任何内容。这意味着服务器返回了一个HTTP响应


您可能键入了错误的URL,或者它不再存在(在此位置)。

java.io.FileNotFoundException:?应该给您一个线索:

在指定的URL上找不到任何内容。这意味着服务器返回了一个HTTP响应

您可能键入了错误的URL,或者它不再存在(在此位置)