本文整理汇总了Java中net.minidev.json.JSONObject.toString方法的典型用法代码示例。如果您正苦于以下问题:Java JSONObject.toString方法的具体用法?Java JSONObject.toString怎么用?Java JSONObject.toString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minidev.json.JSONObject
的用法示例。
在下文中一共展示了JSONObject.toString方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: status
import net.minidev.json.JSONObject; //导入方法依赖的package包/类
@GetMapping(value = "/api/session", produces = CONTENT_TYPE)
public String status() {
logger.info("状态获取: 正在检测登入状态");
SecurityContext context = SecurityContextHolder.getContext();
Authentication authentication = context.getAuthentication();
if (authentication != null && authentication.isAuthenticated()) {
String username = authentication.getName();
if (!"anonymousUser".equals(username)) {
logger.info("状态获取: 检测到已登入用户, username={}", username);
JSONObject object = new JSONObject();
object.put("success", true);
object.put("username", username);
putAuthority(object, authentication);
return object.toString();
} else {
logger.info("状态获取: 检测到匿名用户");
return booleanResult(false);
}
} else {
logger.info("状态获取: 未检测到已登入状态");
return booleanResult(false);
}
}
示例2: doLogin
import net.minidev.json.JSONObject; //导入方法依赖的package包/类
/**
* 登录
*
* @param username
* @param pwd
* @param request
* @param model
* @return
*/
@RequestMapping(value = "/doLogin.d", method = RequestMethod.POST)
public @ResponseBody
String doLogin(@RequestParam("username") String username, @RequestParam("pwd") String pwd,
HttpServletRequest request, Model model, HttpSession session) {
pwd = PWDHelper.escape(pwd);
User user = service.login(username, pwd);
JSONObject json = new JSONObject();
boolean status = false;
if (user == null) {
logger.info("login fail ...{}", username);
} else {
logger.info("login success ...{}", username);
session.setAttribute("user", user);
status = true;
}
json.put("status", status);
return json.toString();
}
示例3: getCurrentUserInfo
import net.minidev.json.JSONObject; //导入方法依赖的package包/类
/**
* 获取当前用户的信息
*
* @param session
* @param model
* @return
*/
@RequestMapping(value = "/get-curuser.d", method = RequestMethod.POST, produces = "application/json;charset=UTF-8")
public @ResponseBody
String getCurrentUserInfo(HttpSession session, Model model) {
User user = (User) session.getAttribute("user");
JSONObject json = new JSONObject();
json.put("result", user);
return json.toString();
}
示例4: booleanResult
import net.minidev.json.JSONObject; //导入方法依赖的package包/类
protected String booleanResult(boolean success) {
JSONObject root = new JSONObject();
root.put("success", success);
return root.toString();
}
示例5: objectResult
import net.minidev.json.JSONObject; //导入方法依赖的package包/类
protected String objectResult(Object object) {
JSONObject root = new JSONObject();
root.put("success", true);
root.put("data", object);
return root.toString();
}
示例6: errorMessage
import net.minidev.json.JSONObject; //导入方法依赖的package包/类
protected String errorMessage(String message) {
JSONObject root = new JSONObject();
root.put("success", false);
root.put("message", message);
return root.toString();
}