skip to Main Content

Parse JSON in java (custom)

I have a JSON array in the following format: [["1234","OS","01/31/2023","02/01/2023","First Day"],["1245","OS","01/23/2023","01/24/2023","Last Day"],["3411","OS","09/21/2022","09/21/2022","Second Day"]] In Java, I would like to parse this array and store data in the following format: String[] firstElements = ["1234" , "1245", "3411"]; String[] secondElements = ["OS",…

VIEW QUESTION
Back To Top
Search