2016년 5월 17일 화요일

android assets 접근해서 파일 가져오기

String CONF_FILE_NAME = "config.json"; 
String json = null; 
InputStream is; 

mContext.getAssets().open(CONF_FILE_NAME); 

int size = is.available(); 
byte[] buffer = new byte[size]; 
is.read(buffer); 
is.close(); 
json = new String(buffer, "UTF-8"); 

Log.d("tag", json);

댓글 없음:

댓글 쓰기