728x90 Java30 한글 인코딩 테스트 인코딩 변환 인코딩 변환 public static void charSet(String str_kr) throws UnsupportedEncodingException{ String charset[] = {"euc-kr", "ksc5601", "iso-8859-1", "8859_1", "ascii", "UTF-8"}; for(int i=0; i 2016. 8. 12. list 재정렬 Comparator com = new Comparator() { @Override public int compare(FnctMngr o1, FnctMngr o2) { return o1.getFnctMngrNo().compareTo(o2.getFnctMngrNo()); } }; Collections.sort(list, com); 2016. 8. 10. 개발 참고 https://yangbongsoo.gitbooks.io/study/content/ 2016. 7. 5. 날짜 시간계산 String today = null; Date date = new Date(); System.out.println(date); // 포맷변경 ( 년월일 시분초) SimpleDateFormat sdformat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); // Java 시간 더하기 Calendar cal = Calendar.getInstance(); cal.setTime(date); // 10분 더하기 cal.add(Calendar.MINUTE, 10); today = sdformat.format(cal.getTime()); System.out.println("10분후 : " + today); cal.setTime(date); // 1시간 전 cal.add(Calend.. 2016. 7. 5. 이전 1 2 3 4 5 6 ··· 8 다음 728x90