我没有找到如何在发布请求中使用Android Studio配置正文
`
private RequestQueue mQueue;
private void send() {
Log.i("start", "start");
final String url1 = "http://127.0.0.1:8080/~/in-cse";
JsonObjectRequest getRequest = new JsonObjectRequest(Request.Method.GET, url1, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
Log.d("Response", response.toString());
}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Log.d("Error.Response", String.valueOf(error));
}
}
) {
@Override
public Map getHeaders() throws AuthFailureError {
Log.i("rentrer dedans", "Headers");
HashMap headers = new HashMap();
headers.put("X-M2M-Origin", "admin:admin");
headers.put("Accept", "application/xml");
return headers;
}
@Override
public Map<String,String> getParams(){
Map<String,String> params = new HashMap<String, String>();
params.put("m2m:ae", "xmlns:m2m="http://www.onem2m.org/xml/protocols" rn="MY_SENSOR");
params.put("api", "app-sensor");
params.put("lbl", "Type/sensor Category/temperature Location/home");
params.put("ff", "false");
return params;
}
};
// add it to the RequestQueue
mQueue.add(getRequest);
}
这是我的代码,下面是我的身体,问题是我不知道如何在我的帖子请求中翻译我的身体
<m2m:ae xmlns:m2m="http://www.onem2m.org/xml/protocols" rn="MY_SENSOR" > <api>app-sensor</api> <lbl>Type/sensor Category/temperature Location/home</lbl> <rr>false</rr> </m2m:ae>
不胜感激!
答案 0 :(得分:0)
您需要实现以下内容:-
result
在这里,“ \”可帮助您在字符串值中插入更多双引号。
让我知道,如果我想念任何东西,或者您需要更多帮助。 如果您觉得有用,请喜欢我的答案。
使用齐射发布内容的便捷方式,
String var="xmlns:m2m=\"http://www.onem2m.org/xml/protocols\" rn=\"MY_SENSOR";
或者以更好的方式,有一个我个人推荐给喜欢Light Volley for Api Integrations的Android开发人员使用的库。
https://github.com/Lib-Jamun/Volley
JSONObject jsonObject= new JSONObject();
try{
jsonObject.put("m2m:ae", "xmlns:m2m=\"http://www.onem2m.org/xml/protocols\" rn=\"MY_SENSOR");
jsonObject.put("api", "app-sensor");
jsonObject.put("lbl", "Type/sensor Category/temperature Location/home");
jsonObject.put("ff", "false");
}catch(JSONException e){
}
使用此版本或更新版本可以更有效地使用Volley。
检查Internet连接:
dependencies {
compile 'tk.jamun:volley:0.0.4'
}
然后只需编写类似的代码
public class CheckConnection {
public static boolean checkConnection(Activity activity) {
ConnectivityManager cm =
(ConnectivityManager) activity.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo activeNetwork = null;
if (cm != null) {
activeNetwork = cm.getActiveNetworkInfo();
if (activeNetwork != null &&
activeNetwork.isConnected()) {
return true;
} else {
MySnackBar.getInstance().showSnackBarForMessage(activity, R.string.connection_check_no_internet);
}
}
return false;
}
public static boolean checkCon(Context context) {
ConnectivityManager cm =
(ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo activeNetwork = null;
if (cm != null) {
activeNetwork = cm.getActiveNetworkInfo();
return activeNetwork != null &&
activeNetwork.isConnected();
}
return false;
}
}
让我知道进一步的答复