Document xmlDocument = builder.parse(request.getInputStream());
此處的請求以POST的形式發送; 但我無法在servlet中獲取進程的請求。 以下異常被拋出通過文檔生成器提交文章請求
org.xml.sax.SAXParseException: Content is not allowed in prolog.
at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:98)
任何一個可以請建議我的答案。
在此先感謝。
如何POST數據? – McDowell 2011-05-12 10:40:01
this.xmlHttp.open(「POST」,url,this.async); \t this.xmlHttp.setRequestHeader(「Content-Type」,「application/x-www-form-urlencoded」); \t this.xmlHttp.send(Params); – Suki 2011-05-12 10:56:57
這是我如何發送一個POST請求到一個servlet(url)。 – Suki 2011-05-12 10:57:33