본문 바로가기

이클립스 자바독 인코딩에러 해결법 이클립스에서 자바독 추출시 인코딩에러가 발생할 경우가 있습니다. 윈도우 및 운영체제의 툴이 대부분 UTF-8을 기본으로 하지요. 이럴경우에는 자바독 옵션에, -locale ko_KR -encoding UTF-8 -charset UTF-8 -docencoding UTF-8 써주시면 됩니다. 이클립스에서 익스포트 시에는, 익스포트 시 next, 두번 누르시면, vm options라고 나오는데 이곳에 아래 글을 써주시면 됩니다. locale ko_KR -encoding UTF-8 -charset UTF-8 -docencoding UTF-8 더보기
안드로이드 샘플보기 다운 받은 샘플 이후에 추가로 제공되는 샘플코드. http://code.google.com/p/apps-for-android/ 확인하여 보자. 더보기
guava-libraries http://code.google.com/p/guava-libraries/ This project contains several of Google's core libraries that we rely on in our Java-based projects: collections, caching, primitives support, concurrency libraries, common annotations, basic string processing, I/O, etc. 더보기
android에서 외부(sdcard) db를 열려면? pc에서 만든, sqlite파일을 안드로이드에 삽입하여 사용하고 싶다면, 어떻게 해야할까? SQLiteDatabase의 openDatabase를 사용하면 된다. 예는 다음과 같음. String filePath = getFilesDir().getAbsolutePath() + File.separator + DB_FILE_NAME; SQLiteDatabase sqlite = null; sqlite = SQLiteDatabase.openDatabase(filePath, null, SQLiteDatabase.OPEN_READONLY); Cursor cursor = sqlite.rawQuery("select code_num from category;", null); sqlite.close(); 참조 : 2011/0.. 더보기
예제로 시작하는 안드로이드 개발 예제로 시작하는 안드로이드 개발 책. 온라인 책 및, 소스 안내 등 페이지입니다. http://androidapps.org.ua/ 더보기