使用json

时间:2016-11-14 12:44:45

标签: android json

在此我只使用一个URl http://api.androidhive.info/songs/album_tracks.php?id=1;

而不是这个,我希望一次使用更多的URL,例如

  1. http://api.androidhive.info/songs/album_tracks.php?id=1

  2. http://api.androidhive.info/songs/album_tracks.php?id=2

  3. 我在这里使用列表视图,当我点击id = 1时,它必须重定向到相应的网址http://api.androidhive.info/songs/album_tracks.php?id=1等等

    protected J SON Object do In Background(String... strings) {
        String response=GetString.getJSONfromURL("http://api.androidhive.info/songs/album_tracks.php?id=1");
    
        try{
            return new J SON Object(response);
        }catch (Exception e){
            e.print Stack Trace();
        }
        return null;
    }
    

1 个答案:

答案 0 :(得分:0)

首先,它是JSONObject(不是J SON对象),doInBackground(不做背景),printStackTrace()(不打印Stack Trace)等。

正如所建议的那样,循环会做到这一点,就像那些行

for (int i=0; i < n; i++) {
    String response = 
getString.getJSONfromURL("http://api.androidhive.info/songs/album_tracks.php?id=" + (i+1));
    try { 
       //the rest of your code...
 }

但老实说,在尝试编写Android应用程序之前,您似乎应该更多地了解java的工作原理。 ;)