1. 程式人生 > >SpringMVC jackson的一個小坑

SpringMVC jackson的一個小坑

這是我寫的第一篇部落格,所以表達的可能很差。

在使用微信jsapi時,需要得到一個jsapi_ticket,而要得到jsapi_ticket,必須先得到access_token。專案框架為SpringMVC,SpringMVC使用的json工具為jackson,之前對這個json工具不是很熟,所以就碰到了這個小坑。

拿access_token時,因為access_token為字串,所以我直接使用jsonNode.get("access_token").toString();然後拼接成url去拿jsapi_ticket,可結果總是錯誤的,debug一下吧,發現url中,xxxx?access_token="abcdefghijkl",原來問題在這裡;正確的應該是xxxx?access_token=abcdefghijkl;

原因分析:

jsonNode.get("access_token")的結果是一個jsonNode,toString()方法只是把轉成一個開發者可讀表示法;應該用jsonNode.get("access_token").asText(),這個才是拿到節點容器中的值。


例如

public static void main(String[] args) throws Exception{
        String s = "{\"name\":\"張三\"}";
        ObjectMapper mapper = new ObjectMapper();
        JsonNode jNode = mapper.readTree(s);
        System.out.println(jNode.get("name").asText());
        System.out.println(jNode.get("name").toString());
    }

列印結果:

張三

"張三"

第一個是2個長度的字串

第二個是4個長度的字串

看原始碼:

/**
     * Method that will return a valid String representation of
     * the container value, if the node is a value node
     * (method {@link #isValueNode} returns true),
     * otherwise empty String.
     */
    public abstract String asText();

/**
     * Method that will produce developer-readable representation of the
     * node; which may <b>or may not</b> be as valid JSON.
     * If you want valid JSON output (or output formatted using one of
     * other Jackson supported data formats) make sure to use
     * {@link ObjectMapper} or {@link ObjectWriter} to serialize an
     * instance, for example:
     *<pre>
     *   String json = objectMapper.writeValueAsString(rootNode);
     *</pre>
     *<p>
     * Note: method defined as abstract to ensure all implementation
     * classes explicitly implement method, instead of relying
     * on {@link Object#toString()} definition.
     */
    @Override
    public abstract String toString();