当我们想要以json格式发送给服务器的一些数据时,我总是读到数据来自json格式的服务器,因此数据以json格式传输,然后字符串请求来自哪里?我不知道我们是否也能以字符串格式发布和获取数据,使用字符串和json请求有什么区别和用例?
谢谢!
答案 0 :(得分:7)
StringRequest类将用于获取任何类型的字符串数据。该 响应可以是json,xml,html,text。
// Request a string response from the provided URL.
StringRequest stringRequest = new StringRequest(Request.Method.GET, URL,
new Response.Listener<String>() {
@Override
public void onResponse(String response) {
// Display the first 500 characters of the response string.
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
}
});
如果您希望响应中有json对象,则应该使用 JsonObjectRequest。
JsonObjectRequest jsonObjReq = new JsonObjectRequest(Method.GET,
URL, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
Log.d(TAG, response.toString());
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
}
});
答案 1 :(得分:1)
关于请求的返回类型,StringRequest
处理String
作为响应,如error = false
和JSONObjectRequest
处理JSONObject
响应比如{"error" : false}
,如何了解它JSONObject
?使用括号({
)。