我有一个集合中的用户对象列表,但我想将其转换为 JSON 格式,以便在我的 html 页面上我可以使用 javascript 读取该 json 数据。
List<UserWithEmbeddedContact> users=(List<UserWithEmbeddedContact>) q.execute();
if(!users.isEmpty()) {
for(UserWithEmbeddedContact user:users) {
System.out.println("username="+user.getUsername()+
" password="+user.getPassword()+" mobile="+user.getMobile());
}
}