jsonオブジェクトからキーを取得したいとします。私は、それを得るために以下のコードを使用している。この部分では JavaのJSONObjectからキーを取得できませんでした
JSONParser parser = new JSONParser();
try {
Object obj = null;
try {
obj = parser.parse(new FileReader(new File("json/customer_list.json")));
} catch (org.json.simple.parser.ParseException e1) {
e1.printStackTrace();
}
JSONObject jsonObject = (JSONObject) obj;
JSONArray listOfBranches = (JSONArray) jsonObject.get("customers");
for (int i = 0; i < listOfBranches.size(); i++) {
System.out.println("Customer :" + listOfBranches.get(i));
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
、
のSystem.out.println( "お客様:" + listOfBranches.get(I));
私は私が写真、ビデオ、および描画キーを取得したい、このJSONから、
{"Photo":{"input_required":false,"output_type":"","input_fields":[{"input_type":"INTEGER","length":"","reg_exp":"","label":"","field_type":"TEXT"},{"values":"","length":"","reg_exp":"","label":"Mode","field_type":"drop_down"},{"length":"","input_type":"INTEGER","reg_exp":"","label":"Quantity","field_type":"TEXT"}]},"video":{"input_required":true,"output_type":"","input_pattern":""},"drawing":{"input_required":true,"output_type":"PDF","input_pattern":""}}
を以下のオブジェクトを取得しています。あなたは私にこれをする考えを示唆してもらえますか?前もって感謝します。
...コーディングハッピー
、以下のコードを使用してJSONオブジェクトからキーを取得しています、 Javaで動作するかどうかはわかりません。 'listOfBranches.get(" Photo ")'は動作しますか? – numbermaniac