andriod 连接wcf ,HttpURLConnection FileNotFoundException

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的含义

 

  1. public void setDoInput(boolean doinput)将此 URLConnection 的 doInput 字段的值设置为指定的值。    
  2. URL 连接可用于输入和/或输出。如果打算使用 URL 连接进行输入,则将 DoInput 标志设置为 true;如果不打算使用,则设置为 false。默认值为 true。  
  3. public void setDoOutput(boolean dooutput)将此 URLConnection 的 doOutput 字段的值设置为指定的值。    
  4. URL 连接可用于输入和/或输出。如果打算使用 URL 连接进行输出,则将 DoOutput 标志设置为 true;如果不打算使用,则设置为 false。默认值为 false。    
 
 
  1. httpUrlConnection.setDoOutput(true);以后就可以使用conn.getOutputStream().write()  
  2. httpUrlConnection.setDoInput(true);以后就可以使用conn.getInputStream().read();  
  3.   
  4. get请求用不到conn.getOutputStream(),因为参数直接追加在地址后面,因此默认是false。  
  5. post请求(比如:文件上传)需要往服务区传输大量的数据,这些数据是放在http的body里面的,因此需要在建立连接以后,往服务端写数据。  
  6.   
  7. 因为总是使用conn.getInputStream()获取服务端的响应,因此默认值是true。  

 

posted on 2017-07-25 23:09  oyl  阅读(269)  评论(0编辑  收藏  举报

导航