我想POST
JsonObject
從設備到服務器使用Volley
但我找不到任何代碼示例。如果您可以請給我提供一些參考資料或一些代碼示例。Android Volley JsonRequest
2
A
回答
1
我找到了一個很好的參考,其中有一些很好的例子:
4
我做這種方式
public void doRequest(RequestQueue volleyRequestQueue,
onResponse responseListener) {
this._responseListener = responseListener;
StringRequest stringRequest = new StringRequest(Method.POST,
Settings.QUESTIONURL, this, this) {
public String getBodyContentType() {
return "application/json; charset=" + getParamsEncoding();
}
public byte[] getBody() throws AuthFailureError {
try {
return new GsonBuilder()
.excludeFieldsWithoutExposeAnnotation().create()
.toJson(YOUROBJECT).toString()
.getBytes(getParamsEncoding());
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
};
stringRequest.setRetryPolicy(new DefaultRetryPolicy(10000, MAXRETRIES,
DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));
volleyRequestQueue.add(stringRequest);
}
+1
謝謝,就是我想要的。 –
相關問題
- 1. Android中的JsonRequest VS StringRequest Volley
- 2. Android Volley JsonRequest接收到錯誤的返回
- 3. Android Volley POST ServerError
- 4. Android Volley POST不起作用
- 5. Android Volley響應循環
- 6. Android Volley Post Request - JsonArrayRequest的解決方法
- 7. Android Volley Double Post
- 8. Android Volley響應
- 9. Android Studio + Volley
- 10. Volley android java.lang.NullPointerException
- 11. Android Volley Requestqueue
- 12. Android Volley - java.lang.OutOfMemoryError
- 13. Android AsyncTask Volley
- 14. Volley Libary Android
- 15. Android Volley ECONNRESET
- 16. Android Volley Error
- 17. 延長JsonRequest <JSONObject>類
- 18. Android Volley + Loader模式?
- 19. Android Volley + JSONObjectRequest緩存
- 20. Android Volley API UTF-8
- 21. Android Volley死了嗎?
- 22. Volley libary vs Android SyncAdapter
- 23. Android Volley error.getMessage()爲空
- 24. Volley Request Android - Strings + Images
- 25. android volley for posting jsonobject
- 26. 具有多個JsonRequest的AsyncTask
- 27. Volley Android:空指針異常
- 28. Android Volley SQLite集成/組合
- 29. Android Volley com.android.volley.NoConnectionError:javax.net.ssl.SSLHandshakeException:javax.net.ssl.SSLProtocolException:SSL握手中止
- 30. 爲什麼Android-Volley更快
你找到一種方法? –