我的资源文件夹上有一个json文件,它包含ñ等文本,我在textview上显示问题,它没有显示为ñ。下面是访问我的json文件的代码:
public String loadJSONFile() {
String json = null;
try {
InputStream is = getAssets().open("map.json");
int size = is.available();
byte[] buffer = new byte[size];
is.read(buffer);
is.close();
json = new String(buffer,"UTF-8");
} catch (IOException ex) {
ex.printStackTrace();
return null;
}
return json;
}