String xmlText = ... HttpURLConnection c = ... c.setRequestMethod("POST"); c.setRequestProperty("Content-Type", "text/xml; charset=\"utf-8\""); c.setDoOutput(true); OutputStreamWriter out = new OutputStreamWriter(c.getOutputStream(), "UTF8"); out.write(xmlText); out.close();