android– 在json对象里面改造后发布数组?

android– 在json对象里面改造后发布数组?,第1张

概述我正在进行改造并通过post方法向服务器发送请求我现在得到这个json的响应,看到这是我发送到服务器的帖子.adreessclassforpostimusingthisobject{"years":"1855","months":"6","skills":1}nowihavetoimplementarrayinsideobjectinski

我正在进行改造并通过post方法向服务器发送请求我现在得到这个Json的响应,看到这是我发送到服务器的帖子.

adreess class for post i m using this object

 { "years":"1855", "months":"6", "skills":1}

Now i have to implement array insIDe object in skills how to post this

  {  "years":"1", "months":"6","skills":["1","2","3"],    }

如何在改造中获取对象内部的数组
我使用这样的界面

        Call<AddressResponce> address(@Body Adreess adreess);

解决方法:

package com.example;import java.util.List;import com.Google.gson.annotations.Expose;import com.Google.gson.annotations.Serializedname;public class Example {@Serializedname("years")@Exposeprivate String years;@Serializedname("months")@Exposeprivate String months;@Serializedname("skills")@Exposeprivate List<String> skills = null;public String getYears() {return years;}public voID setYears(String years) {this.years = years;}public String getMonths() {return months;}public voID setMonths(String months) {this.months = months;}public List<String> getSkills() {return skills;}public voID setSkills(List<String> skills) {this.skills = skills;}}

我希望它对你有用..!

总结

以上是内存溢出为你收集整理的android – 在json对象里面改造后发布数组?全部内容,希望文章能够帮你解决android – 在json对象里面改造后发布数组?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1115183.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存