我查看了大部分在線的可用教程,在Libgdx中使用Json,這看起來非常簡單。但是,由於某種原因,json.toJson()不斷返回一個兩個單元格的數組,第一個包含{和第二個包含}。 我的代碼是非常簡單的:Libgdx,JSON:Json.tojson(object)不斷返回{}
public class GameConfig {
public int screenWidth;
public int screenHeight;
public GameConfig() {
screenWidth = 800;
screenHeight = 600;
}
}
然後
String configAsText = json.toJson(zzz);//configAsText.value equals [0] = { and [1] = }
String configAsText = json.toJson(config, GameConfig.class);//nor this one
任何想法?
如何實例化json對象? –
你知道JSON是什麼嗎?它不是「兩個單元格數組」,而是代表JSON中空對象的String ['}'。 – noone
Christian Cederquist < - 像這樣Json json = new Json(); – coffeenet