- 相关推荐
Android读取本地json文件的方法
本文实例讲述了Android读取本地json文件的方法。分享给大家供大家参考,具体如下:
1、读取本地JSON ,但是显示汉字乱码
public static String readLocalJson(Context context, String fileName){ String jsonString=""; String resultString=""; try { BufferedReader bufferedReader=new BufferedReader(new InputStreamReader( context.getResources().getAssets().open(fileName))); while ((jsonString=bufferedReader.readLine())!=null) { resultString+=jsonString; } } catch (Exception e) { // TODO: handle exception } return resultString;}
2、读取本地JSON,显示汉字正确,txt文件设置时UTF-8,UNIX
public static String readLocalJson(Context context, String fileName){ String jsonString=""; String resultString=""; try { InputStream inputStream=context.getResources().getAssets().open(fileName); byte[] buffer=new byte[inputStream.available()]; inputStream.read(buffer); resultString=new String(buffer,"GB2312"); } catch (Exception e) { // TODO: handle exception } return resultString;}
【Android读取本地json文件的方法】相关文章:
隐藏电脑文件的方法03-19
excel合并多个文件的方法05-27
压缩视频文件的方法03-20
配置本地路由的常见方法介绍03-03
Node.js如何响应Ajax的POST请求并且保存为JSON文件详解03-29
iphone和电脑传文件的方法03-21
word 恢复未保存文件的方法01-04
mac给文件夹加密的方法03-12
解决本地连接故障的三个方法03-06