我正在使用MediaWiki API通过实验机器人更新某些页面。
该机器人使用Java Apache HTTP客户端库来更新页面。

(...)
PostMethod postMethod = new PostMethod("http://mymediawikiinstallation/w/api.php");
postMethod.addParameter("action","edit");
postMethod.addParameter("title",page.replace(' ', '_'));
postMethod.addParameter("summary","trying to fix this accent problem");
postMethod.addParameter("text",content);
postMethod.addParameter("basetimestamp",basetimestamp);
postMethod.addParameter("starttimestamp",starttimestamp);
postMethod.addParameter("token",token);
postMethod.addParameter("notminor","");
postMethod.addParameter("format","xml");
int status = httpClient.executeMethod(postMethod);
(...)


但是,“内容”字符串包含一些重音符号。 System.out.prinln(content)看起来不错,但是Wiki中的加重字符看起来很糟。例如。 “Valérie”而不是“Valérie”。

我怎样才能解决这个问题?

最佳答案

好的,更改请求标头可以解决此问题。

postMethod.setRequestHeader( "Content-Type", "application/x-www-form-urlencoded; charset=utf-8");

08-17 21:37