1
我正嘗試向GAE中的mapreduce發送發佈請求。 谷歌提供Gae MapReduce。如何以編程方式發送發佈請求
private String generateHtml(String configXml) {
return "<html>"
+ "<body>"
+ "<form action=\"/mapreduce/start\" method=\"POST\">"
+ "<textarea name=\"configuration\" rows=20 cols=80>"
+ configXml
+ "</textarea>"
+ "<input type=\"submit\" value=\"Start\">"
+ "</form>";
}
如何配置:
String configString = ConfigurationXmlUtil.convertConfigurationToXml(config);
String body = "configuration=" + configString;
這樣做,我得到空指針異常,當服務器試圖獲取參數 「配置」;
我應該如何構建請求,使其與textarea的html場景相同?