我正在使用json-simple编写 json。在我的 sql 查询中,我使用 epoch desc 的顺序。但是 simple-json 正在重新排列所有内容,我无法在我的 jquery 中以正确的顺序阅读。我该如何阻止这个?
JSONObject obj = new JSONObject();
while (rs.next()) {
Long epoch = rs.getLong(4);
String data = new java.text.SimpleDateFormat("dd/MM/yyyy").format(new java.util.Date(epoch * 1000));
String hora = new java.text.SimpleDateFormat("HH:mm:ss").format(new java.util.Date(epoch * 1000));
JSONObject sub = new JSONObject();
sub.put("id", rs.getInt(1));
sub.put("idUser", rs.getInt(2));
if ("".equals(name)) {
sub.put("user", user.getNameById(rs.getInt(2)));
} else {
sub.put("user", name);
}
sub.put("recado", rs.getString(3));
sub.put("epoch", rs.getLong(4));
sub.put("data", data);
sub.put("hora", hora);
obj.put(rs.getInt(1), sub);
}
return obj.toJSONString();
谢谢