0

我正在尝试使用 xml 明智地将 plist 读入我的 android 应用程序。这是我的代码

String path = "android.resource://" + context.getPackageName() + "/" + R.raw.nameofplist;
Map<String, Object> males = Plist.load(path);

但我不断得到:

java.io.FileNotFoundException: /android.resource:/com.packagename.appname/2130968577 (No such file or directory)

nameofplist.plist在我的文件夹中获取我的 plist 路径的正确方法是什么res/raw

4

1 回答 1

9

我也很难找到答案……但我最终解决了。

这是我基于位于res/raw 文件夹中的名为airports.plist的 plist 文件的解决方案。

Map<String, Object> properties = null;
try {
    InputStream inputStream =getResources().openRawResource(R.raw.airports);
    BufferedReader br = null;
    try {
        br = new BufferedReader(new InputStreamReader(inputStream));
        StringBuilder sb = new StringBuilder();
        String line;
        while ((line = br.readLine()) != null) {
            sb.append(line);
        }
        properties = Plist.fromXml(sb.toString());

        //TODO do something with the object here
        System.out.println("plist object... "+properties);

    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        br.close();
    }
} catch (Exception ex) {
    ex.printStackTrace();
}

希望这对某人有帮助!

于 2014-01-07T07:00:36.293 回答