我正在为一个正在开发的小型安卓游戏编写一个装载机/保护程序。我将它保存为json文件,方法是在游戏中为每个'actor'创建一个json对象,将它们放入jsonarray,然后将jsonarray.tojsonstring()
写入文件。
这是我保存的方法,我调用了保存级别方法,该方法使用addActor()
将每个actor添加到数组中,然后调用writefile()
方法
public void addActor(Actor actor, int index, JSONArray actorArray) {
if (actor != null) {
System.out.println("adding actor " + actor.name);
} else {
System.out.println("Adding nulla ctor");
}
if (actors[index] != null) {
} else {
actors[index] = new JSONObject();
actors[index].put("index", index);
actors[index].put("bodyname", actor.name);
actors[index].put("restitution", actor.body.getFixtureList().get(0).getRestitution());
actors[index].put("density", actor.body.getFixtureList().get(0).getDensity());
actors[index].put("friction", actor.body.getFixtureList().get(0).getFriction());
actors[index].put("startx", actor.startX);
actors[index].put("starty", actor.startY);
actors[index].put("startrotation", actor.startAngle);
actors[index].put("rotationspeed", actor.rotSpeed);
actors[index].put("enabled", actor.enabled);
actors[index].put("numPaths", actor.numPaths);
if (actor.numPaths > 0) {
JSONArray[] pathx = new JSONArray[actor.getNumPaths()];
JSONArray[] pathy = new JSONArray[actor.getNumPaths()];
JSONArray[] pathspeed = new JSONArray[actor.getNumPaths()];
for (int i = 0; i < actor.getNumPaths(); i++) {
pathx[i] = new JSONArray();
pathy[i] = new JSONArray();
pathspeed[i] = new JSONArray();
for (int j = 0; j < actor.getPath(i).size; j++) {
pathx[i].add(actor.getPath(i).points[j].x);
pathy[i].add(actor.getPath(i).points[j].y);
pathspeed[i].add(actor.getPath(i).points[j].speed);
}
}
System.out.println("added " + actor.name + ", " + pathx.length + " paths.");
actors[index].put("pathx", pathx);
actors[index].put("pathy", pathy);
actors[index].put("pathspeed", pathspeed);
}
//indices.add(index);
actorArray.add(actors[index]);
}
}
public void writeFile(String name, JSONArray actorArray) {
try {
FileWriter writer = new FileWriter("C:\\Users\\mojo\\Desktop\\svn\\Ball\\src\\com\\moe\\ball\\levels\\" + name + ".json");
writer.write(actorArray.toJSONString());
writer.flush();
writer.close();
} catch (IOException e) {
e.printStackTrace();
}
}
public void saveLevel(String levelName, BallScreen screen) {
JSONArray actorArray = new JSONArray();
for (int i = 0; i < screen.maxActor; i++) {
addActor(screen.actorList[i], i, actorArray);
}
writeFile(levelName, actorArray);
}
抱歉,当我弄清楚json库并试图解决问题时,那里有很多随机的东西。下面是一段代码用来测试它的加载是否正确
JSONArray array = (JSONArray) parser.parse(new FileReader("C:\\Users\\mojo\\Desktop\\svn\\Ball\\src\\com\\moe\\ball\\levels\\" + name + ".json"));
JSONObject obj;
for (int i = 0; i < array.size(); i++) {
obj = (JSONObject) array.get(i);
System.out.println("bodyname " + i + ": " + obj.get("bodyname"));
}
当加载任何具有多个移动路径的actor的级别(因此在主要actor阵列的一个元素中有一个数组)时,我得到一个错误
JSONArray array = ....
行说:
Unexpected character (L) at position 50.
继承了json文件中的一小段代码,以便您可以看到它导致问题的位置
[{"enabled":true,"index":0,"density":0.6,"pathy":[Lorg.json.simple.JSONArray;@39d3da65,"friction":0.6,"rotationspe
the \`L\` in \`[Lorg.json....\` is at position 50.
很抱歉,如果这是一个愚蠢的问题,我对此很新,我确实花了几个小时搜索,如果我在这里找不到答案,我只是想尝试一个不同的json库(我正在使用json.simple现在)
答案 0 :(得分:0)
您尝试将JSONArray
的Java数组存储为JSON对象的pathx
和pathy
属性。您应该存储JSONArray
JSONArray
代替。{/ p>