JsonParser是定義公共API用于讀取的Json內(nèi)容的基類。使用JsonFactory實例的工廠方法創(chuàng)建實例。
以下是org.codehaus.jackson.JsonParser類的聲明:
public abstract class JsonParser extends Object implements Closeable, Versioned
S.N. | 類和說明 |
---|---|
1 |
static class JsonParser.Feature 枚舉定義了解析器的所有togglable功能。 |
2 |
static class JsonParser.NumberType 枚舉可用于數(shù)字可能的“本地”(最佳)類型。 |
protected PrettyPrinter _cfgPrettyPrinter - 對象處理相當(dāng)打印(通常多余的空白,使結(jié)果更加可讀)輸出。
protected JsonToken _currToken - 通過nextToken()檢索最后一個令牌(如有)。
protected int _features - 位標(biāo)志位,表明其已啟用JsonParser.Features構(gòu)成。
protected JsonToken _lastClearedToken - 最后清除令牌如果有的話:也就是值有效時clearCurrentToken()被調(diào)用。
S.N. | 構(gòu)造函數(shù)和說明 |
---|---|
1 |
protected JsonParser() 默認的構(gòu)造函數(shù) |
2 | protected JsonParser(int features) |
這個類繼承了以下類方法:
java.lang.Object