首页 > 移动平台 > 详细

Android OutputStreamWriter's flush method throws IOException

时间:2015-05-11 12:57:20      阅读:238      评论:0      收藏:0      [点我收藏+]

<span style="white-space: pre;">	Android开发弱网络客户端的时候,需要给服务器发送HTTP POST请求,首先进行设置</span>
<span style="white-space: pre;">	</span>URL url = new URL(urlString);
	connection = (HttpURLConnection) url.openConnection();
	connection.setConnectTimeout(Constants.CONNECTION_TIMEOUT);
	connection.setReadTimeout(Constants.IO_TIMEOUT);
	connection.setDoOutput(true);
	connection.setRequestMethod("POST");
	connection.setUseCaches(false);
	connection.setRequestProperty("Content-Type",
	<span style="white-space: pre;">	</span>"application/json:charset=utf-8");
	connection.setDoInput(true);
	connection.setDoOutput(true);
<span>	connection.connect();</span>
<span style="white-space: pre;"><span style="white-space: pre;">	</span>osw = new OutputStreamWriter(connection.getOutputStream());</span>
<span style="white-space:pre">	BufferedReader reader = new BufferedReader(
<span style="white-space:pre">		</span>new InputStreamReader(conn.getInputStream()));
</span><span style="white-space:pre">	</span>//本语句是造成IOException的原因  (1)

然后写入数据

	String requestContent = "[" + "{\"ipaddress\":\"" + localIp + "\","
						+ "\"nettype\":\"" + (netType) + "\"," + "\"envtype\":\""
						+ envType  + "\"}" + "]";
	osw.write(requestContent);
	osw.flush();
	osw.close();
报了IOException的错误,此时HTTP的写内容还没完毕,就在代码(1)处开了一个BufferReader,所以造成了IOException。

                还有其它人遇到同样的问题,但是原因不一样,请参考

http://stackoverflow.com/questions/4736042/outputstreamwriters-flush-method-throws-ioexception-when-trying-to-write-chines

Android OutputStreamWriter's flush method throws IOException

原文:http://blog.csdn.net/mooreliu/article/details/45642747

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!