意外的字符(<)位置0 Java

时间:2014-06-18 11:35:53

标签: java json parsing

我的json解析器有一个小问题

当我尝试解析字符串时,我得到了这个例外:

Unexpected character (<) at position 0

但我不知道问题出在哪里。这是我做的代码:

JSONParser parser = new JSONParser();
        try {
            Object obj = parser.parse(response);
            System.out.println(obj);

            JSONObject jsonObject = (JSONObject) obj;

            // loop the string
            //id = (String) jsonObject.get("id");
            voornaam = (String) jsonObject.get("voornaam");
            achternaam = (String) jsonObject.get("achternaam");

            _voornaamTxtField.setText(voornaam);
            _achternaamTxtField.setText(achternaam);

        } catch (ParseException pex) {
            JOptionPane.showMessageDialog(null, "ParseException",
                    "Error", JOptionPane.ERROR_MESSAGE);
            System.out.println(pex);
        } catch (NullPointerException npex) {
            JOptionPane.showMessageDialog(null, "NullpointerException",
                    "Error", JOptionPane.ERROR_MESSAGE);
        }

有人可以向我解释我正在做什么导致异常

1 个答案:

答案 0 :(得分:1)

您的回复字符串不是JSON。最有可能的是它是一种XML 如果您的响应是对http调用的响应,则需要将内容类型指定为“application / json”,如果服务支持,则可能是service将返回JSON字符串。