- 相关推荐
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文件的方法】相关文章:
怎么打开xml文件的方法和软件06-17
MySQL导出导入SQL文件命令方法06-29
ipad与电脑之间文件传输方法04-22
在Word标题栏显示文件名的方法03-10
配置显示器颜色配置文件方法教程12-02
电脑硬盘读取不了怎么办07-16
Fdisk无法读取硬盘分区怎么办07-16
Word文件格式无效或文件已损坏怎么办12-07
勒索病毒文件恢复201707-16