JSONObject jObject3 = new JSONObject("{\"int\" : 0X7f}");
assertEquals( jObject3.opt("int"), 127);
jObject3 = new JSONObject("{\"int\" : 0x7f}");
assertEquals( jObject3.opt("int"), 127);
jObject3 = new JSONObject("{\"int\" : -0x99e}");
assertEquals( jObject3.opt("int"), -2462);
jObject3 = new JSONObject("{\"int\" : -0X99e}");
assertEquals( jObject3.opt("int"), -2462);
} catch (Exception ex1) {
ex = ex1;