我正在尝试使用javaapi显示来自gmail的电子邮件。 当用户点击消息行时,邮件将打开其邮件正文。为此,我编写了一个javascript函数:
function viewMail() {
$('#table tbody').unbind().on(
'click',
'tr td:not(.email-select)',
function() {
var messageNumber = $(this).parent().children('td:eq(0)')
.children().val();
var from = $(this).parent().children('td:eq(1)').text();
var subject = $(this).parent().children('td:eq(2)').text();
var dateAndTime = $(this).parent().children('td:eq(3)').text();
var seen = $(this).parent().children('td:eq(4)').text();
var folderName = $(this).parent().children('td:eq(5)').text();
/*
* $.post("/Webclient/getMail", {messageId:messageId},
* function(data){
*/
var data = {"messageNumber":messageNumber,
"seen":seen,
"folderName":folderName
};
$.ajax({
type : "GET",
url : "/Webclient/showMail",
contentType : "application/json; charset=utf-8",
data : JSON.stringify(data),
success : function(result) {
$('#email_subject').text(subject);
$('#sender_name').text(from);
$('#date_and_time').text(dateAndTime);
$('#messageBody').empty();
$('#messageBody').append(result.content);
$('#emailModal').modal('show');
}
});
});
}
这是我在控制器中的方法:
@RequestMapping(value = "/showMail", method = RequestMethod.GET)
public @ResponseBody
String showMail(HttpServletRequest request) throws IOException{
JSONObject result = new JSONObject();
StringBuilder buffer = new StringBuilder();
BufferedReader reader = request.getReader();
String line;
while ((line = reader.readLine()) != null) {
buffer.append(line);
}
String emailInfo = buffer.toString();
//This is the line I am getting error
JSONObject jsonObject = new JSONObject(emailInfo);
System.out.println(emailInfo);
User authUser = (User) SecurityContextHolder.getContext()
.getAuthentication().getPrincipal();
String userName = authUser.getUsername();
String password = SecurityContextHolder.getContext()
.getAuthentication().getCredentials().toString();
String message = null;
try {
message = imapService.showMail(userName,password,jsonObject);
result.append("message",message);
} catch (MessagingException e) {
result.append("message","Could not open the message");
e.printStackTrace();
}
return result.toString();
}
错误:
org.json.JSONException: A JSONObject text must begin with '{' at 1 [character 2 line 1]
org.json.JSONTokener.syntaxError(JSONTokener.java:433)
org.json.JSONObject.<init>(JSONObject.java:194)
org.json.JSONObject.<init>(JSONObject.java:321)
controller.ImapController.showMail(ImapController.java:173)
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
java.lang.reflect.Method.invoke(Method.java:606)
答案 0 :(得分:0)
错误消息中的行&#34; JSONObject文本必须以&#39; {&#39;&#34;让我怀疑问题出在emailinfo
构造函数中的JSONObject
。
我无法从这里告诉emailinfo
的内容是什么,但是如果你看一下你打印出的emailinfo
的内容,我愿意打赌,您会看到emailinfo
没有采用正确的JSON格式。
正确的JSON格式示例如下:
{"key": {"second_key": "value"}}
另外,我建议使用以下网站检查emailinfo
是否有效JSON:http://jsonlint.com
答案 1 :(得分:0)
我有一次相同的错误消息。事实证明,问题是在JSON数据之前,即'{'之前有一个空行。
关于JSON对象语法的那个或类似问题。 希望它有所帮助。
答案 2 :(得分:0)
当您尝试对格式不正确的json进行任何操作时,会遇到上述问题。
首先尝试使用现有的json对象创建一个新的Json对象。如果现有json中没有任何错误,则可以创建新的json。然后对新的json对象进行操作。