JXL 라이브러리 사용할때 한글이 안 나오는 경우 WorkbookSettings 을 이용하여 인코딩을 지정해주면 출력된다.
* 애뮬레이터에서는 안되고, 테스트폰에서는 됐다...
InputStream is = getBaseContext().getResources().getAssets().open("test.xls");
WorkbookSettings setting = new WorkbookSettings();
setting.setEncoding("UTF-8");
workbook = Workbook.getWorkbook(is, setting);
'프로그래밍 > 안드로이드' 카테고리의 다른 글
[안드로이드] getResources().getDrawable(id) Out of Memory 오류 (0) | 2012.12.28 |
---|---|
[안드로이드] Facebook 오류 (error_code=1 Error 1349040 Invalid Application ID: The specified application ID is invalid) (0) | 2012.12.27 |
[안드로이드] 연락처 그룹 정보 가져오기 (0) | 2012.08.26 |
[안드로이드] 연락처(전화번호부) 정보 가져오기 (2) | 2012.08.26 |
안드로이드 개발 환경 설정 요약 (0) | 2010.04.09 |