zoukankan      html  css  js  c++  java
  • 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。  
  • 相关阅读:
    Codeforces Round #622 C2.Skyscrapers (hard version)
    蓝桥杯 54合根植物(并查集+统计集合个数)
    蓝桥杯 6翻硬币
    Codeforces Round #622 (Div. 2) C1. Skyscrapers (easy version)(简单版本暴力)
    Codeforces Round #622 (Div. 2) A. Fast Food Restaurant
    洛谷P1734 最大约数和(01背包)
    HDU 1069 Monkey and Banana(线性DP)
    2019CSP-S T1格雷码
    eclipse使用git提交项目
    GitHub 注册失败的原因 以及解决 。
  • 原文地址:https://www.cnblogs.com/liangouyang/p/7237055.html
Copyright © 2011-2022 走看看