목록분류 전체보기 (33)
CrashOverride 잡동사니 !!
1. 숫자를 문자열로 바꾸기 int i = 1234; String s = String.valueOf(i); 문자열 "1234"로 변환 String s = Integer.toString(i); 문자열 "1234"로 변환 String s = ””+i; 문자열 "1234"로 변환 String s = “”+12.34; 문자열 "12.34"로 변환 String s = “”+0; 문자열 "0"로 변환 2. 문자열을 숫자로 바꾸기 String str = "1234"; int i = Integer.parseInt(str); long i = Long.parseLong(str) double i = Double.valueOf(str).doubleValue(); Byte.parseByte(str) 바이트형 변환 Short.p..
페이지 내 HTML에 아래와 같은 코드를 삽입하여 캐쉬에에서 읽지 않고 항상 서버에서 내려받은 최신화된 페이지를 클라이언트에 제공할 수 있다. 출처 :: Holic's Tistory http://holiclove.tistory.com/entry/캐쉬-읽지-않고-실행
import java.util.Timer; import java.util.TimerTask; public class time { Timer timer; public time(int seconds) { timer = new Timer(); timer.schedule(new TimerTaskTest(), seconds*1000); } class TimerTaskTest extends TimerTask { public void run() { System.out.println("Time's up!"); timer.cancel(); //timer thread 종료 } } public static void main(String args[]) { System.out.println("About to schedule t..