如何在Android上通过改造解析json数据

时间:2016-07-25 00:09:05

标签: java android json retrofit

生病在这里要特别具体。所以我创建了最基本的可能代码来测试它,我仍然无法获取数据,请帮忙!这是我的代码:

这是我本地服务器上的json输出:  http://localhost:8080/KokosinjacRestfull/rest/textService/mudriPevci

  

[{“id”:1,“subCategory”:“MudriPevci”,“title”:“Mujo i   haso“,”“description”:“Krenuli做   Grada”, “作家”: “卢卡”, “日期”: “2016年6月13日”},{ “ID”:3, “子类别”: “mudriPevci”, “称号”: “PERICA”, “说明” :“霸   关于je napravio Haos“,”作者“:”luka“,”date“:”2016-06-13“}]

Text.class:

package kokosinjac.com.digiart.koktest.models;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;


public class Text {

@SerializedName("id")
@Expose
private Integer id;
@SerializedName("subCategory")
@Expose
private String subCategory;
@SerializedName("title")
@Expose
private String title;
@SerializedName("description")
@Expose
private String description;
@SerializedName("author")
@Expose
private String author;
@SerializedName("date")
@Expose
private String date;

/**
 * No args constructor for use in serialization
 *
 */


/**
 *
 * @param id
 * @param author
 * @param title
 * @param subCategory
 * @param description
 * @param date
 */


/**
 *
 * @return
 * The id
 */
public Integer getId() {
    return id;
}

/**
 *
 * @param id
 * The id
 */
public void setId(Integer id) {
    this.id = id;
}

/**
 *
 * @return
 * The subCategory
 */
public String getSubCategory() {
    return subCategory;
}

/**
 *
 * @param subCategory
 * The subCategory
 */
public void setSubCategory(String subCategory) {
    this.subCategory = subCategory;
}

/**
 *
 * @return
 * The title
 */
public String getTitle() {
    return title;
}

/**
 *
 * @param title
 * The title
 */
public void setTitle(String title) {
    this.title = title;
}

/**
 *
 * @return
 * The description
 */
public String getDescription() {
    return description;
}

/**
 *
 * @param description
 * The description
 */
public void setDescription(String description) {
    this.description = description;
}

/**
 *
 * @return
 * The author
 */
public String getAuthor() {
    return author;
}

/**
 *
 * @param author
 * The author
 */
public void setAuthor(String author) {
    this.author = author;
}

/**
 *
 * @return
 * The date
 */
public String getDate() {
    return date;
}

/**
 *
 * @param date
 * The date
 */
public void setDate(String date) {
    this.date = date;
}

}

Api interface.class:

  

package kokosinjac.com.digiart.koktest.retrofit;

     

import java.util.ArrayList;

     

import kokosinjac.com.digiart.koktest.models.Text;进口   retrofit2.Call; import retrofit2.http.GET; import retrofit2.http.Path;

     

public interface RetrofitAPInterface {

@GET("rest/textService/{subCategory}")
Call<ArrayList<Text>> getText(@Path("subCategory") String subCat);
     

}

在电话上显示数据的课程(你不需要注意一些字符串,只需看一下改装部分,我已经尽可能地简单了, subCatData.class:

public static final String BASE_URL ="http://localhost:8080/KokosinjacRestfull/";
HashMap<String,String> dataArr;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_sub_cat_data);
    final TextView tView = (TextView) findViewById(R.id.textView);
    Intent intent = getIntent();
    String urlSecondPartBefore = intent.getStringExtra("passedSubCat");
    String urlSecondPartAfter = urlSecondPartBefore.replaceAll("\\s", "");
    String urlFirstPart = intent.getStringExtra("passedUrlFirstPart");
    String catName = intent.getStringExtra("passedCatName");
    String data = null;
   // TextView test = (TextView) findViewById(R.id.test);


    Retrofit retrofit = new Retrofit.Builder()
            .baseUrl(BASE_URL)
            .addConverterFactory(GsonConverterFactory.create())
            .build();
    RetrofitAPInterface apiService = retrofit.create(RetrofitAPInterface.class);
    Call<ArrayList<Text>> call = apiService.getText("mudriPevci");
    call.enqueue(new Callback<ArrayList<Text>>() {
        @Override
        public void onResponse(Call<ArrayList<Text>> call, Response<ArrayList<Text>> response) {
            int statusCode = response.code();
            ArrayList<Text> textArray = response.body();
            for (Text t : textArray){
                tView.setText(t.getDescription());
            }
          //  Log.i("DATA", "onResponse: "+text.getId());
        }

        @Override
        public void onFailure(Call<ArrayList<Text>> call, Throwable t) {

        }
    });

}

}

我知道整堆数据都是一个简单的标签,但它是出于测试目的。仍然我无法检索任何东西,我也没有得到任何错误。非常感谢帮助。谢谢!

6 个答案:

答案 0 :(得分:1)

如果您使用Android模拟器测试您的应用程序,我认为您的网址问题,请尝试"http://10.0.2.2:8080/",但如果您正在测试然后,您需要传递您的计算机IP地址,例如"http://192.143.1.0/",并确保您的设备已与退出数据库的计算机连接。

答案 1 :(得分:0)

要解析Android上的JSON数据,我强烈建议您使用JSOUP,您可以点击here找到它,它简单,直接且用户友好。很容易学习。希望这能帮到你!

答案 2 :(得分:0)

问题可能在您的BASE_URL中将BASE_URL更改为 DateTime.ParseExact

答案 3 :(得分:0)

我希望以下示例可能有所帮助

     public void startFetching() {
    mApiManager.getFlowerApi().getFlowers(new Callback<String>() {
        @Override
        public void success(String s, Response response) {
            Log.d(TAG, "JSON :: " + s);

            try {
                JSONArray array = new JSONArray(s);

                for(int i = 0; i < array.length(); i++) {
                    JSONObject object = array.getJSONObject(i);

                    Flower flower = new Flower.Builder()
                            .setCategory(object.getString("category"))
                            .setPrice(object.getDouble("price"))
                            .setInstructions(object.getString("instructions"))
                            .setPhoto(object.getString("photo"))
                            .setName(object.getString("name"))
                            .setProductId(object.getInt("productId"))
                            .build();

                    mListener.onFetchProgress(flower);

                }

            } catch (JSONException e) {
                mListener.onFetchFailed();
            }


            mListener.onFetchComplete();
        }

        @Override
        public void failure(RetrofitError error) {
            Log.d(TAG, "Error :: " + error.getMessage());
            mListener.onFetchComplete();
        }
    });
}

答案 4 :(得分:0)

问题在于您的网址Android无法点击您的本地主机即 http://localhost:8080 / KokosinjacRestfull / rest / textService / mudriPevci

在特定的IP和运行中启动服务器。新的IP就像 的 http://192.168.1.1 / KokosinjacRestfull /休息/ textService / mudriPevci

答案 5 :(得分:0)

使用 ip address 而不是 localhost(从 url 替换 localhost 并将您的计算机的 ipaddress 作为 ip 地址打开 cmd 并键入 ipconfig 并替换 localhost)。