本文整理匯總了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();
}