从webservice使用android获取Json

时间:2016-02-15 08:19:05

标签: android json

 public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);


        Button mButton = (Button) findViewById(R.id.clcik);
        mButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                List list = new ArrayList<>();
                String url ="http://abcd.abcd.com/api/SearchJob?                           limit=5&jobkeyword=oil&countrytext=United%20Kingdom&location=London%20[Greater%2        0London]&apikey=1111111111&siteid=1";
                HttpPost httppost = new HttpPost(url);
                try{

                    HttpClient client = new DefaultHttpClient() ;
                    HttpResponse response = client.execute(httppost);
                    InputStream is = response.getEntity().getContent();
                    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();
                    String json = sb.toString();
                    JSONObject jsonObject = new JSONObject(json);
                    JSONArray jsonArray = jsonObject.getJSONArray("jobslist");
                    for(int i=0;i<jsonArray.length();i++){
                        JSONObject c = jsonArray.getJSONObject(i);
                        String jobtitle = c.getString("jobtitle");
                        list.add(jobtitle);
                        Log.d("list", jobtitle);
                    }




                    ArrayAdapter<List> adapter = new ArrayAdapter<List>(getApplicationContext(),android.R.layout.simple_list_item_1,list);

                    ListView listView = (ListView) findViewById(R.id.jsonlist);
                    listView.setAdapter(adapter);

                }catch(Exception e){

                }

            }
        });




    }
    }

这是我的MainActivity代码。我正在尝试从Web服务获取数据,但我无法显示它。

 <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout

    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >



    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Click me"
        android:id="@+id/clcik"

        />

    <ListView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/jsonlist"

        ></ListView>


</LinearLayout>

这是我的xml代码。

 <?xml version="1.0" encoding="utf-8"?>
<manifest package="com.practice.android.json"
          xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>

                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
    </application>

</manifest>

这是我的清单文件。可以有人请帮助我。忘记网址只是一个例子。我的代码有问题吗?我正在使用sdk 23并且Http方法被描述但是我看到人们告诉它它仍然有用。

1 个答案:

答案 0 :(得分:1)

您尝试在UIThread上发出Web请求,而不允许在Android中使用。

您需要在单独的线程中发出任何Web请求。查看代码,您正在使用Web请求中的数据来构建ListView。

查看以下link,了解如何执行此操作。