Newer
Older
EPQ-3D-renderer / src / main / java / JsonWriter.java
@cory cory on 6 Jan 2023 801 bytes - random stuff
import org.codehaus.jackson.map.ObjectMapper;

import java.io.File;
import java.io.IOException;
import java.util.List;

public class JsonWriter {

    public static void main(String[] args) {

        Country countryObj = new Country();
        countryObj.name = "India";
        countryObj.population = 1000000;

        List<String> listOfStates = new ArrayList<String>();
        listOfStates.add("Madhya Pradesh");
        listOfStates.add("Maharastra");
        listOfStates.add("Rajasthan");

        countryObj.states = listOfStates ;
        ObjectMapper mapper = new ObjectMapper();

        try {

            // Writing to a file
            mapper.writeValue(new File("c:\\country.json"), countryObj );

        } catch (IOException e) {
            e.printStackTrace();
        }

    }
}