- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试向本地服务器发送 http POST 请求
这是代码:
public JSONObject makeHttpRequest (String url, String method, List<NameValuePair> params) {
try {
if (method == "POST") {
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
httpPost.setEntity(new UrlEncodedFormEntity(params));
HttpResponse httpResponse = httpClient.execute(httpPost);
httpStatusCode = httpResponse.getStatusLine().getStatusCode();
HttpEntity httpEntity = httpResponse.getEntity();
inputStream = httpEntity.getContent();
} else if (method == "GET") {
DefaultHttpClient httpClient = new DefaultHttpClient();
String paramString = URLEncodedUtils.format(params, "utf-8");
url += "?" + paramString;
HttpGet httpGet = new HttpGet(url);
HttpResponse httpResponse = httpClient.execute(httpGet);
httpStatusCode = httpResponse.getStatusLine().getStatusCode();
HttpEntity httpEntity = httpResponse.getEntity();
inputStream = httpEntity.getContent();
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
inputStream.close();
jsonString = sb.toString();
} catch (Exception e) {
e.printStackTrace();
}
try {
jsonObject = new JSONObject(jsonString);
} catch (JSONException e) {
Log.e("JSON Parser", "Error parsing data" + e.toString());
}
return jsonObject;
}
对于参数,我想创建一个值对作为 {"user": SOMEJSONObject} 但当前的 http POST 只接受 NameValuePair,它只接受字符串作为值。
最佳答案
改为创建字符串实体:
httpPost.setEntity(new StringEntity("some string"));
关于java - 以 JSONObject 作为值的 Android BasicNameValuePair,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21686424/
我目前正在使用此代码在数据库中存储两个字符串(newCategory 和 reportDate): String newCategory = spinnerFood.getSelectedItem()
我知道这听起来很疯狂,但我知道“BasicNameValuePair”实际上已被弃用!但我的老板告诉我出于某种原因要使用它。我有多个复选框,用户需要选择他们的兴趣,这些数据被发送并保存在 mysql
我正在尝试通过 Java 中的 BasicNameValePair 发送数组。是否可能,如果可能,如何实现。 字符串[]参数 = {"19"};params.add(new BasicNameValu
我问了问题 here .现在我可以将 arraylist 传递给另一个 Activity 。 在我的第二个 Activity 中,我试图发布这个数组列表。 ArrayList testing = th
我有一个构建 HttpResponse 初始值设定项的类。在应返回 BasicNameValuePair 的方法之一中,我必须检查列表中是否存在具有由字符串“name”指定的键或名称的条目。 publ
如何使用 ArrayList 创建此 JSON 以在 Android 中发布 json { "user" : { "nickname" : "nickname6",
我正在尝试使用 Java 循环 BasicNameValuePair。我已经有一个 PHP 的工作示例。这是我所拥有的: ArrayList data = new ArrayList(); pos
我必须将参数列表传递给 Http POST 调用。 服务器期望的实际 JSON 是: { "par1": "val1", "par1": "val1", "par3": ["val1", "va
我遇到了 BasicNameValuePair 的问题。我想将 ArrayList 传递到 BasicNameValuePair 中。通过 NameValuePair,我想将此 arrayList 发
我在 ListActivity 上收到“未找到任何项目” toast 。 注意:当我将 PHP 代码更改为“Select * from items”时,会显示整个表格。但是当我尝试在 Android/
我正在尝试向本地服务器发送 http POST 请求 这是代码: public JSONObject makeHttpRequest (String url, String method, List
我正在使用一些在线教程学习 Android。除了这个之外,我所有的 Java 类(class)都很好。 @Override protected Void doInBackground(
我目前正在尝试反序列化 API 结果,如下所示 [{"name":"MyName","value":"MyValue"},{"name":"MyName2","value":"MyValue2"}]
我是 Android 应用程序的新手。要点我想将数据从 android 应用程序发送到 php 页面,但我的代码中出现以下错误 org.apache.http.impl.client.defaulth
我正在尝试为一些 BasicNameValuePair 对象列表实现自定义 gson 序列化器/反序列化器。 我在这里看到了部分解决方案代码(用于序列化): How do I get Gson to
我必须将 BasicNameValuePair 的 ArrayList 发送到我的 Android 应用程序中的另一个 Activity。首先,它不允许我这样做,说 BasicNameValuePai
我想在电子邮件正文中插入 html 代码...在我的代码中,我在后台发送电子邮件意味着按钮的 onClick 事件,因为每当我在 BasicNameValuePair 中使用 Html.formHtm
我是一名优秀的程序员,十分优秀!