有没有兄弟知道
connection.setRequestProperty("Content-type", "text/xml");

connection.setRequestProperty("Content-type", "text/xml;charset=gb2312");
的差别啊,小弟在通过HTTP方式传输xml文件,传输后的xml文件中的汉字全部为问号,高手们帮我分析下原因吧,谢谢!
下面是部分原代码:
URL realURL = new URL(url);
HttpURLConnection connection = (HttpURLConnection) realURL.openConnection();
connection.setDoOutput(true);
connection.setRequestProperty("Content-type", "text/xml");
connection.setRequestMethod("POST");