본문 바로가기
728x90
반응형

분류 전체보기719

[Java] JDK 1.6이하버전 다운로드 http://www.oracle.com/technetwork/java/javase/archive-139210.html 2016. 9. 19.
[DB] ibatis iterate 사용, 배열처리 --출처 http://javafactory.tistory.com/entry/ibatis-iterate-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0 ibatis에서 iterate를 사용해보자. 반복문을 쓰는거다. select를 10000번 포문 돌면서 하는게 빠른지 select 문에서 조건저을 iterate를 사용해서 길게 적고 한번 쿼리하는게 빠른지 비교해보기 위해서 진행하였다. 이건 ArrayList을 던졌을 때12345678 SELECT id, register, name, location, year, sex, mobile, state, timeupdate, isregister FROM profile_register WHERE id = #[]# Colored by Color Scr.. 2016. 9. 14.
[Javascript] Textbox, Label 값 설정 자바스크립트에서 본문 요소의 값을 설정하는 방법은 getElementById라는 메소드를 이용해서 가능하다. 텍스트박스 document.getElementById('span_id').value = 'new_value'; 레이블 document.getElementById('span_id').innerText = 'new_value';또는document.getElementById('span_id').innerHTML = 'new_value'; 2016. 9. 7.
[Jquery] Ajax와 Jquery를 활용한 동적selectbox http://m.blog.naver.com/doryjj/205144765 2016. 9. 5.
[Java] 자바 String to Date, Date to String, String to int, int to String http://nota.tistory.com/m/50 //String to Date String from = "2013-04-08 10:10:10"; SimpleDateFormat transFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date to = transFormat.parse(from); //Date to String Date from = new Date(); SimpleDateFormat transFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String to = transFormat.format(from); // String값을 int형의 값으로 바꾸는 방법 int numInt = Integer.. 2016. 9. 5.
728x90
반응형