`
freegaga
  • 浏览: 32168 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

java.io.IOException: Server returned HTTP response code: 415 for URL

 
阅读更多

 

URL url = new URL(address);
URL url = new URL(address);
connection = (HttpURLConnection) url.openConnection();
connection.setRequestProperty("Content-Type", "text/xml; charset=utf-8");
connection.setDoOutput(true);
connection.setUseCaches(false);
connection.setDoInput(true);
connection.setConnectTimeout(20000);
connection.setReadTimeout(300000);
connection.setRequestProperty("Charset", "UTF-8");
OutputStream os = connection.getOutputStream();

os.write(sb.toString().getBytes());
os.close();
				
is = connection.getInputStream();
					

 

解决方案:加入红色部分即可

 

0
4
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics