2015-09-23 59 views
5

发送POST请求与JSONArray我想在Android中发送一个简单的POST请求与身体等于这个:使用凌空

[ 
{ 
    "value": 1 
} 
] 

我试图在Android中使用排库,这是我的代码:

// the jsonArray that I want to POST  
String json = "[{\"value\": 1}]"; 
JSONArray jsonBody = null; 
try { 
    jsonBody = new JSONArray(json); 
    } catch (JSONException e) { 
           e.printStackTrace(); 
           } 
final JSONArray finalJsonBody = jsonBody; 

// starting the request 
final RequestQueue queue = Volley.newRequestQueue(getApplicationContext()); 
JsonObjectRequest request = 
new JsonObjectRequest(com.android.volley.Request.Method.POST,"https://...",null, 

new Response.Listener<JSONObject>() { 

@Override 
public void onResponse(JSONObject response) { 
Log.d("mytag", "Response is: " + response);}}, 
new Response.ErrorListener() { 

@Override 
public void onErrorResponse(VolleyError error) { 
Log.d("Mytag", "error");}}) { 

@Override 
protected Map<String,String> getParams() { 
// the problem is here... 
return (Map<String, String>) finalJsonBody; 
} 

@Override 
public Map<String, String> getHeaders() throws AuthFailureError { 
HashMap<String, String> params = new HashMap<String, String>(); 
// I put all my headers here like the following one : 
params.put("Content-Type", "application/json");          
return params;}}; 

queue.add(request); 

问题是getParams方法只接受一个Map对象,因为我想发送一个JSONArray。所以,我不得不使用铸造,其产生的错误,那么......

我不知道我怎么能解决这个问题 谢谢

+0

阅读[我asnwer这里(http://stackoverflow.com /问题/ 32197615 /抽射,发送-的JSONObject到服务器与 - 法柱/ 32216762#32216762)。但是,您的json是JSONArray,而不是JSONObject。 – BNK

+0

你可以更明白吗?我仍然无法编码这个jsonArray ...谢谢你的理解 – fujitsu4

+0

JSONObject jsonBody = new JSONObject(“{\”value \“:1}”); JSONObject以{开始并以}结尾。而且,你得到了什么错误信息?请发布它和任何logcat信息(如果可用)。 – BNK

回答

4

你可以参考我下面的示例代码:

更新您的引擎收录链接:

由于服务器响应的JSONArray,我用JsonArrayRequest代替JsonObjectRequest。并且不需要覆盖getBody了。

 mTextView = (TextView) findViewById(R.id.textView); 
     String url = "https://api.orange.com/datavenue/v1/datasources/2595aa553d3049f0b0f03fbaeaa7ddc7/streams/9fe5edb1c76e4968bdcc9c902010bc6c/values"; 
     RequestQueue requestQueue = Volley.newRequestQueue(this); 
     final String jsonString = "[\n" + 
       " {\n" + 
       " \"value\": 1\n" + 
       " }\n" + 
       "]"; 
     try { 
      JSONArray jsonArray = new JSONArray(jsonString); 
      JsonArrayRequest jsonArrayRequest = new JsonArrayRequest(Request.Method.POST, url, jsonArray, new Response.Listener<JSONArray>() { 
       @Override 
       public void onResponse(JSONArray response) { 
        mTextView.setText(response.toString()); 
       } 
      }, new Response.ErrorListener() { 
       @Override 
       public void onErrorResponse(VolleyError error) { 
        mTextView.setText(error.toString()); 
       } 
      }) { 
       @Override 
       public Map<String, String> getHeaders() throws AuthFailureError { 
        Map<String, String> headers = new HashMap<>(); 
        headers.put("X-OAPI-Key","TQEEGSk8OgWlhteL8S8siKao2q6LIGdq"); 
        headers.put("X-ISS-Key","2b2dd0d9dbb54ef79b7ee978532bc823"); 
        return headers; 
       } 
      }; 
      requestQueue.add(jsonArrayRequest); 
     } catch (JSONException e) { 
      e.printStackTrace(); 
     } 

我的代码同时适用于谷歌的官方凌空libray和mcxiaoke图书馆

如果你想使用谷歌的图书馆,你的Git克隆作为谷歌文档后,从\src\main\java\com复制的Android文件夹到你的项目为下面的截图中\app\src\main\java\com(你克隆排球项目):

enter image description here

build.gradle应包含以下

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    compile 'com.android.support:appcompat-v7:23.0.1' 
    compile 'com.google.code.gson:gson:2.3.1'  
} 

如果你的项目使用mcxiaoke的图书馆,在build.gradle将类似于以下(注意dependencies):

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 23 
    buildToolsVersion "23.0.0" 

    defaultConfig { 
     applicationId "com.example.samplevolley" 
     minSdkVersion 16 
     targetSdkVersion 23 
     versionCode 1 
     versionName "1.0" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    compile 'com.android.support:appcompat-v7:23.0.0' 
    compile 'com.mcxiaoke.volley:library:1.0.17' 
    compile 'com.google.code.gson:gson:2.3' 
} 

我建议您将创建2个新的示例项目,然后将使用Google的图书馆,另一个将使用mcxiaoke的图书馆。 UPDATE OF

END

 String url = "http://..."; 
     RequestQueue requestQueue = Volley.newRequestQueue(this); 
     final String jsonString = "[\n" + 
       " {\n" + 
       " \"value\": 1\n" + 
       " }\n" + 
       "]"; 
     JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(Request.Method.POST, url, null, new Response.Listener<JSONObject>() { 
      @Override 
      public void onResponse(JSONObject response) { 
       // do something... 
      } 
     }, new Response.ErrorListener() { 
      @Override 
      public void onErrorResponse(VolleyError error) { 
       // do something... 
      } 
     }) { 
      @Override 
      public byte[] getBody() { 
       try { 
        return jsonString.getBytes(PROTOCOL_CHARSET); 
       } catch (UnsupportedEncodingException uee) { 
        VolleyLog.wtf("Unsupported Encoding while trying to get the bytes of %s using %s", 
          jsonString, PROTOCOL_CHARSET); 
        return null; 
       } 
      } 
     }; 
     requestQueue.add(jsonObjectRequest); 

下面的截图是领受的服务器端Web服务:

enter image description here

+0

我试过你的代码,我得到一个与“PROTOCOL_CHARSET”相关的错误,它告诉我:'PROTOCOL_CHARSET'在com.android.volley.toolbox.JsonRequest – fujitsu4

+0

中有私人访问我猜你的项目使用'compile'c​​om.mcxiaoke来使用排列库。 volley:library:1.0.17'' in build.gradle file。我的项目使用谷歌的官方排球库,可以用“utf-8”取代PROTOCOL_CHARSET – BNK

+0

我仍然收到错误:com.android.volley.ServerError。它'由于编程糟糕的排球库?也许这将是一个解决方案采取谷歌之一? – fujitsu4