您的位置:首页 > 理论基础 > 计算机网络

andriod 连接wcf ,HttpURLConnection FileNotFoundException

2017-07-25 23:09 363 查看
https://stackoverflow.com/questions/17991347/java-eofexception-when-getinputstream-from-post/18151239#18151239

If you use

conn.getInputStream()


everytime, it will throw a
java.io.FileNotFoundException
in the case when your request is unsuccessful, basically for any HTTP response code of 400 or above. In this case, your response body lies in

conn.getErrorStream()


Thus, you have to check the HTTP response code before you decide which stream to read from:

int status = conn.getResponseCode();
BufferedInputStream in;
if (status >= 400 ) {
in = new BufferedInputStream( conn.getErrorStream() );
} else {
in = new BufferedInputStream( conn.getInputStream() );
}

BufferedReader reader = new BufferedReader(new InputStreamReader(in));
StringBuilder sb = new StringBuilder();
String str;
while ((str = reader.readLine()) != null) {
sb.append(str);
}

这样就能看到错误信息啦。

或者在服务器端看WCF的报错来看错误信息。

<system.diagnostics>
<sources>
<source name="System.ServiceModel" switchValue="Warning" propagateActivity="true">
<listeners>
<add name="xml" />
</listeners>
</source>
</sources>
<sharedListeners>
<add name="xml" type="System.Diagnostics.XmlWriterTraceListener" initializeData="D:\wcf.svclog" />
</sharedListeners>
</system.diagnostics>

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------

setDoInput和setDoOutput的含义

public void setDoInput(boolean doinput)将此 URLConnection 的 doInput 字段的值设置为指定的值。

URL 连接可用于输入和/或输出。如果打算使用 URL 连接进行输入,则将 DoInput 标志设置为 true;如果不打算使用,则设置为 false。默认值为 true。

public void setDoOutput(boolean dooutput)将此 URLConnection 的 doOutput 字段的值设置为指定的值。

URL 连接可用于输入和/或输出。如果打算使用 URL 连接进行输出,则将 DoOutput 标志设置为 true;如果不打算使用,则设置为 false。默认值为 false。

httpUrlConnection.setDoOutput(true);以后就可以使用conn.getOutputStream().write()

httpUrlConnection.setDoInput(true);以后就可以使用conn.getInputStream().read();

get请求用不到conn.getOutputStream(),因为参数直接追加在地址后面,因此默认是false。

post请求(比如:文件上传)需要往服务区传输大量的数据,这些数据是放在http的body里面的,因此需要在建立连接以后,往服务端写数据。

因为总是使用conn.getInputStream()获取服务端的响应,因此默认值是true。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐