jsonreader

    0熱度

    3回答

    在Java中使用GSON是否有任何註釋,我可以指出一個字段,即使它是一個對象,它應該將其保留爲原始字符串。 ? 或者什麼是最簡單的方法來實現呢? //This is the original @SerializedName("perro") public Perro perro //This is what I want to achieve @Serialize

    0熱度

    1回答

    如果不使用額外的JAR或API,嚴格使用javax.json.*,如何從URL讀取JSON對象? 的javadocs認爲這是可能的: JsonReader jsonReader = Json.createReader(new StringReader("[]")); JsonArray array = jsonReader.readArray(); jsonReader.close();

    1熱度

    1回答

    我發現使用http://ip-api.com/json是獲取必要用戶位置詳細信息的簡單方法。結果,例如從該網站是: {"as":"AS37061 ONECOM","city":"Nairobi","country":"Kenya","countryCode":"KE","isp":"One Communications Ltd","lat":-1.2833,"lon":36.8167,"org":

    0熱度

    1回答

    我正在使用JsonReader來解析一些JSON數據。這是類似的結構元素的大數組: [ { "type":"duel", "discipline":"leagueoflegends", "tournament_id":"57ee13fe140ba0cd2a8b4593", "opponents":[ { "part

    0熱度

    3回答

    因此,我迷失瞭如何做到這一點:目標僅僅是調用java中的openweather api,並將結果返回到控制檯。我無法找到任何教程如何做到這一點,只有如何解析從另一個文件的JSON數據... 呃這是在正確的方向嗎?不知道。修改爲每建議嘗試使用GSON import com.google.gson.JsonElement; import com.google.gson.JsonPrimitive;

    0熱度

    1回答

    目前,我正在開發一個應用程序,該應用程序在listview中顯示基於JSON的API的內容。獲取數據並使用適配器填充列表視圖首次可以正常工作。但是,當我嘗試使用刷卡刷新刷新內容,我第一次嘗試刷新我得到一個IllegalStateException錯誤: W/System.err: java.lang.IllegalStateException: JsonReader is closed W/Sy

    0熱度

    2回答

    我有下面的代碼: reader = new JsonReader(new InputStreamReader(con.getInputStream())); 它返回以下JSON: { "results": [ { "bioguide_id": "D000626", "in_office": true, "thomas_id": "0229

    3熱度

    2回答

    { places: [ { id: 1, place:"America", name: "Robert", age: "22", place_lat: "10.017", place_lon: "76.344" }, { id: 1, place:"America", name: "Albert", age: "22", place_lat: "10.017", p

    0熱度

    1回答

    我將Json文件緩存爲字節數組,並且希望隨後使用JsonReader讀取它。 但是,JsonReader以Reader作爲輸入參數。 我該如何將字節數組轉換爲Reader,是否值得這樣做,還是有一種更直接的方式來緩存Json文件的InputStream,然後由JsonReader讀取它? 期待您的回覆!

    1熱度

    1回答

    我是java語言的newbiew。 我想從JsonObject獲得一個值並將其轉換爲BigDecimal。 我有以下代碼: JsonReader jsonReader; try { jsonReader = Json.createReader(httpRequest.getReader()); } catch (IOException e) { return Respons