/ Published in: Java
http://kpbird.blogspot.hk/2011/08/android-plist-parser.html
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/// Read plist from Assets try { String temp; while ((temp = br.readLine()) != null) sb.append(temp); e.printStackTrace(); } finally { try { br.close(); // stop reading ex.printStackTrace(); } } return sb.toString(); }