avatar JK Park
Android
  • Jun 15, 2015

    byteToHexString

    public class Main { public static void main(String[] args) { System.out.print(byteToHexString("abcde".getBytes())); } public static String byteToHexString(byte[] b) { …

  • Dec 11, 2014

    날짜 표현 DateFormat, Custom Date Text View

    Date today; String output; SimpleDateFormat formatter; formatter = new SimpleDateFormat(pattern, currentLocale); today = new Date(); output = formatter.format(today); …

  • Oct 30, 2013

    android(java) 파일 저장 후 리부팅 시 저장안되어 있는 현상

    android에서 FileOutputStream 의 write();, flush(); 후 리부팅 시 간헐적으로 파일이 내용이 변경되지 않을 때.

  • Aug 29, 2012

    서비스 바인드와 핸들러 구현 (옵저버 패턴)

    Activity.java MessengerService.java

  • Jun 7, 2012

    edittext 특수문자 제한, 한글만 입력

    영문 + 숫자 public InputFilter filterAlphaNum = new InputFilter() { public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) { Pattern ps … [Read More]