2017-03-16 41 views
0

ネットで何時間も検索しましたが、this as answerしか見つかりませんでした。しかし、私は自分のコードでこれをどこで使うべきかわかりません。エラーjava.net.ConnectException:24000ms後に接続に失敗しました:ECONNREFUSED(接続が拒否されました)

public final static int GET=1; 
    public final static int POST=2; 
    public final static int PUT=3; 
    public final static int DELETE=4; 
    public final static String TAG="JSONParser"; 

    Context context; 
    public JSONParser(Context context){ 
     super(); 
     this.context=context; 
     //this.deviceId = Utility.getDeviceId(this.context); 
    } 
    public String getResponseString(String url,int method,String basicAuth){ 
     return makeServiceCall(url,method,null,basicAuth); 
    } 

    public String getResponseString(String url, int method, ContentValues params, String basicAuth){ 
     return makeServiceCall(url,method,params,basicAuth); 
    } 
    public JSONObject getJSONFromUrl(String url, int method, String basicAuth){ 
     return getJSONFromUrl(url,method,null,basicAuth); 
    } 
    public JSONObject getJSONFromUrl(String url, int method, ContentValues params, String basicAuth){ 
     Log.e(TAG, "getJSONFromUrl: "); 
     JSONObject json=null; 
     try{ 
      String jsonString=makeServiceCall(url,method,params,basicAuth); 
      if(jsonString!=null){ 
       json=new JSONObject(jsonString); 
      } 
      return json; 
     }catch (JSONException e){ 
      Log.e(TAG, "Error parsing data "+e.toString()); 
      return json; 
     } 
    } 
    public JSONArray getJSONArrayFromUrl(String url, int method, String basicAuth){ 
     return getJSONArrayFromUrl(url,method,null,basicAuth); 
    } 
    public JSONArray getJSONArrayFromUrl(String url, int method, ContentValues params, String basicAuth){ 
     Log.e(TAG, "getJSONArrayFromUrl"); 
     JSONArray jsonArray=null; 
     try{ 
      String jsonString=makeServiceCall(url,method,params,basicAuth); 
      if(jsonString!=null){ 
       Log.e("jsonString",jsonString); 
       jsonArray=new JSONArray(jsonString); 
      } 
      return jsonArray; 
     }catch (JSONException e){ 
      Log.e(TAG, "Error parsing data "+e.toString()); 
      return jsonArray; 
     } 
    } 
    private String makeServiceCall(String address, int method,ContentValues params, String basicAuth) { 
     Log.e(TAG, "makeServiceCall"); 
     String result = null; 
     URL url = null; 
     HttpURLConnection urlConnection = null; 
     OutputStream out; 
     InputStream in; 
     try { 
      address = URLDecoder.decode(address, "UTF-8"); 
      Log.e(TAG, "makeServiceCall: Url: " + address); 
     } catch (Exception e) { 

     } 


      try { 

       url = new URL(address); 

       urlConnection = (HttpURLConnection) url.openConnection(); 
       urlConnection.setConnectTimeout(24000); 
       urlConnection.setReadTimeout(24000); 
       urlConnection.setAllowUserInteraction(false); 
       urlConnection.setInstanceFollowRedirects(true); 

       if (method == POST) { 
        urlConnection.setRequestMethod("POST"); 
        urlConnection.setDoOutput(true); 
        urlConnection.setDoInput(true); 
       } else if (method == GET) { 
        urlConnection.setRequestMethod("GET"); 
       } else if (method == PUT) { 
        urlConnection.setRequestMethod("PUT"); 
        urlConnection.setDoOutput(true); 
       } else if (method == DELETE) { 
        urlConnection.setRequestMethod("DELETE"); 
        urlConnection.setDoOutput(true); 
       } 
       //urlConnection.setRequestProperty("Content-Type","application/x-www-from-urlencoded"); 
       //urlConnection.setRequestProperty("Content-Type","application/from-data"); 
       //urlConnection.setRequestProperty("charset","utf-8"); 
       urlConnection.setRequestProperty("Accept", "application/json"); 
       //urlConnection.setRequestProperty("Accept","text/html"); 

       if (basicAuth != null && basicAuth.length() > 0) { 
        urlConnection.setRequestProperty("Authorization", basicAuth); 
       } 
       if (method != GET) { 
        if (params != null) { 
         StringBuilder postData = new StringBuilder(); 
         for (String key : params.keySet()) { 
          if (postData.length() != 0) postData.append('&'); 
          postData.append(URLEncoder.encode(key, "UTF-8")); 
          postData.append('='); 
          postData.append(URLEncoder.encode(String.valueOf(params.get(key)), "UTF-8")); 
         } 
         byte[] outData = postData.toString().getBytes("UTF-8"); 
         urlConnection.setRequestProperty("Content-Length", Integer.toString(outData.length)); 
         out = new BufferedOutputStream(urlConnection.getOutputStream()); 
         out.write(outData); 
         out.close(); 
        } 
       } 
       urlConnection.connect(); 
       in = new BufferedInputStream(urlConnection.getInputStream()); 
       result = inputStreamToString(in); 
       Log.e(TAG, "ServerResponse" + result); 

      } catch (Exception e) { 
       Log.e("makeServiceCall: ", "Error" + e.toString()); 
       Toast.makeText(context,context.getResources().getString(R.string.please_try_later),Toast.LENGTH_SHORT).show(); 
      } finally { 
       if (urlConnection != null) { 
        urlConnection.disconnect(); 
       } 
      } 


     return result; 
    } 

    /* 
    private HttpClient createHttpClientWithDefaultSocketFactory(Object o, Object o1) { 
    } 
*/ 
    private static String inputStreamToString(InputStream in) { 
     String result=""; 
     if(in==null){ 
      return result; 
     } 
     try{ 
      BufferedReader reader=new BufferedReader(new InputStreamReader(in,"UTF-8")); 
      StringBuilder out=new StringBuilder(); 
      String line; 
      while((line=reader.readLine())!=null){ 
       out.append(line); 
      } 
      result=out.toString(); 
      reader.close(); 
      return result; 
     }catch(Exception e){ 
      Log.e("inputStreamToString: ","Error"+e.toString()); 
      return result; 
     } 

    } 

私はタイムアウトを増やしてみましたが、この問題はWiFiではなくモバイルデータを使用している場合にのみ見られます。どんなヘルプも実際に本当に高く評価されるでしょう。

+0

WiFiを使用してもモバイルデータでは動作しない場合は、ローカルアドレスに接続しようとしている可能性がありますか?ちなみに、あなたが見つけた答えは、何度か再接続することを提案しているので、forループを実装するだけです。 – Tyrmos

+0

ERCONNREFUSEDは、サーバーのポートが接続を拒否していることを示します。たぶんそれはあなたを制限し、接続を閉じることを強制しているのでしょうか? – GregP

+0

@Tyrmosはい、for-loopを実装しましたが、それは壊れます。 –

答えて

0

サーバは応答を送信できませんでした:上記のIPとポートでバックエンドが正しく動作していることを確認してください。

+0

バックエンドについてはしませんが、タイムアウトしても、アプリは必要ありません少なくともクラッシュする –

関連する問題