gpt4 book ai didi

java - 通过带 header 的 HTTPPOST Android JSON 调用

转载 作者:行者123 更新时间:2023-12-02 08:09:20 24 4
gpt4 key购买 nike

我找到了一个关于如何在 Android 中从 HTTPPOST 调用 JSON 的示例。现在我可以使用链接调用本地主机上的服务:(http://10.0.2.2/testingjson/testing.json)

它在 listView 中提供输出,这太棒了!

现在我需要或要求的是我想在链接上插入一些额外的信息,例如,

http://10.0.2.2/testingjson/testing.json?regid=1234&pass="abcd"

有两个 java 文件,Main 和 JSONfunction。

这是所有代码:

Main.java:

    package com.android.jsontut;

import java.util.ArrayList;
import java.util.HashMap;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NodeList;



import android.app.ListActivity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.Toast;

public class Main extends ListActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.listplaceholder);

ArrayList<HashMap<String, String>> mylist = new ArrayList<HashMap<String, String>>();


JSONObject json = JSONfunctions.getJSONfromURL("http://10.0.2.2/testingjson/testing.json");

try{

JSONArray earthquakes = json.getJSONArray("earthquakes");

for(int i=0;i<earthquakes.length();i++){
HashMap<String, String> map = new HashMap<String, String>();
JSONObject e = earthquakes.getJSONObject(i);

map.put("id", String.valueOf(i));
map.put("name", "Earthquake name:" + e.getString("eqid"));
map.put("magnitude", "Magnitude: " + e.getString("magnitude"));
mylist.add(map);
}
}catch(JSONException e) {
Log.e("log_tag", "Error parsing data "+e.toString());
}

ListAdapter adapter = new SimpleAdapter(this, mylist , R.layout.main,
new String[] { "name", "magnitude" },
new int[] { R.id.item_title, R.id.item_subtitle });

setListAdapter(adapter);

final ListView lv = getListView();
lv.setTextFilterEnabled(true);
lv.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
@SuppressWarnings("unchecked")
HashMap<String, String> o = (HashMap<String, String>) lv.getItemAtPosition(position);
Toast.makeText(Main.this, "ID '" + o.get("id") + "' was clicked.", Toast.LENGTH_SHORT).show();

}
});
}
}

现在是第二个文件:

JSONFUNCTIONS.java

package com.android.jsontut;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.HashMap;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import android.util.Log;

public class JSONfunctions {

public static JSONObject getJSONfromURL(String url){
InputStream is = null;
String result = "";
JSONObject jArray = null;

//http post
try{
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(url);
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
is = entity.getContent();

}catch(Exception e){
Log.e("log_tag", "Error in http connection "+e.toString());
}

//convert response to string
try{
BufferedReader reader = new BufferedReader(new InputStreamReader(is,"iso-8859-1"),8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
result=sb.toString();
}catch(Exception e){
Log.e("log_tag", "Error converting result "+e.toString());
}

try{

jArray = new JSONObject(result);
}catch(JSONException e){
Log.e("log_tag", "Error parsing data "+e.toString());
}

return jArray;
}
}

有没有完整的示例,我可以从中学习如何在此示例中添加标题?或者哪位天才可以帮助我? :)

我愿意解决这个问题,所以我很乐意详细讨论解决这个问题! :)

如果需要更多信息,请告诉我..

提前致谢!

最佳答案

如果您确实想使用 POST,您需要创建一个 NameValuePair 对象并用您的参数填充它。

    List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("regid", "123"));
nameValuePairs.add(new BasicNameValuePair("pass", "abcd"));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

但我怀疑,由于您只是获取 JSON 对象,因此您实际上并不想使用 HttpPost 对象来发出请求。查看 HttpGet,它将允许您使用您发布的 URL (http://10.0.0.2/some/url?param=123&otherparam=456)。您仍然可以用同样的方式阅读响应。

关于java - 通过带 header 的 HTTPPOST Android JSON 调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7690825/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com