Why i can not save the json object into the json array?

前端 未结 2 1943
春和景丽
春和景丽 2021-01-29 08:53

I\'m beginner in android,write simple application to send json array to server,write this code:

JSONArray jsonArray = new JSONArray();
            JSONObjec         


        
2条回答
  •  执笔经年
    2021-01-29 09:20

    Another example to show use of Gson library

    make a Record.java class

    import com.google.gson.annotations.SerializedName;
    
    public class Record {
    
        @SerializedName("Name")
        private String name;
    
        @SerializedName("password")
        private String password;
    
        @SerializedName("item1")
        private String item1;
    
        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        public String getPassword() {
            return password;
        }
    
        public void setPassword(String password) {
            this.password = password;
        }
    
        public String getItem1() {
            return item1;
        }
    
        public void setItem1(String item1) {
            this.item1 = item1;
        }
    }
    

    make a test for this RecordTestDrive.java

    import java.util.ArrayList;
    
    import com.google.gson.Gson;
    
    public class RecordTestDrive {
    
        public static void main(String[] args) {
    
            ArrayList records = new ArrayList<>();
    
            for (int i = 0; i < 4; i++) {
                Record record = new Record();
                record.setName("Name_"+i);
                record.setPassword("password_"+i);
                record.setItem1("item_"+i);
                records.add(record);
            }
    
            String jsonResult = (new Gson()).toJson(records);
            System.out.println(""+jsonResult);
    
        }
    }
    

    output==>

    [
      {
        "Name": "Name_0",
        "password": "password_0",
        "item1": "item_0"
      },
      {
        "Name": "Name_1",
        "password": "password_1",
        "item1": "item_1"
      },
      {
        "Name": "Name_2",
        "password": "password_2",
        "item1": "item_2"
      },
      {
        "Name": "Name_3",
        "password": "password_3",
        "item1": "item_3"
      }
    ]
    

    In this manner once you have data read from the SQLite database into your objects, after which you can easily make array of JSON String from the data you have gathered from the database to send it to server

提交回复
热议问题