WEB/JSP(JAVA)(39)
-
아파치 톰캣 연동 (apache tomcat)
아파치 톰캣 연동 1. http://tomcat.apache.org/ 웹브라우저의 주소 창에 입력 해주세요톰캣 6.0 , 톰캣 7.0 , 톰캣8.0 버전중 최신 버전인 8.0 을 설치해 보겠습니다. (여러분 버전 선택은 자유 ) 2. 왼쪽에 보시면 Download 안에 Tomcat 8.0 를 클릭해주세요 3. 아래쪽 보시면 Binary Distributions 제목이있습니다. 여러가지 파일 형태가 나열되있는데 그중 가장 쉽게 설치 할수 있는 것 Windows service Installer이므로 다운로드 해줍니다. 4.앞에서 다온르도 받은 톰캣 파일을 더블클릭후 설치 프로그램 시작 됩니다. Next를 눌러주세여 5. 동의(I Agree) 클릭해주세요 6. Examples 를 체크해주시면 여러가지 유용한 ..
2013.08.29 -
자바 toString() 오버라이드
클래스값을 가지고 있는데 값이 올바르게 담겨있는 지 로그를 확인할 때 toString() 오버라이드를 통해서 값을 뽑을수 있습니다. public class ggari_type { private String name = "김영준"; private String birthDay = "1999.01.01"; private String homePageURL = "http://www.naver.com"; @Override public String toString() { return "ggari_type [name=" + name + ", birthDay=" + birthDay + ", homePageURL=" + homePageURL + "]"; } public static void main(String[] arg..
2013.08.27 -
자바 형변환
자바 형변환(자바string형변환) 은 String 형을 Integer 형으로 변환 후 계산을 하거나 그거에 대한 형변환을 하여 사용할수 있도록 해줍니다. valueOf() 는 음수를 인식하지 못함 parseInt()는 음식를 인식함 public class ggari_type { public static void main(String[] args) { /** * valueOf() 는 음수를 인식하지 못함 * parseInt()는 음식를 인식함 */ String a = "1"; int b = 2; int temp = b + Integer.valueOf(a); int temp1 = b + Integer.parseInt(a); System.out.println("String형을 Int형으로 형변환 1 + 2 ..
2013.08.14 -
자바 달력
자바달력 2월 윤년을 계산해주고 첫번째 날의수 구하고자는 1일이 무슨요일인지 계산해서 뿌려준다. 소스는 아래를 참조 import java.util.*; public class ggari_calendar { static int year = 0; static int month = 0; static int tempNal = 0; static int week = 0; static int i = 0; static Scanner sc = new Scanner(System.in); public static void main(String[] args) { int monthArray[] = {31,28,31,30,31,30,31,31,30,31,30,31}; setYear();//날짜 셋팅 if (year % 4 == ..
2013.08.08 -
자바 소수 반올림
자바 반올림 Math.round 를 써주면 된다 . Math 클래스를 이용하면 올림 내림 버리기가 가능 여러가지가 있으니 참고하자 ex) static long round(double d) Returns the result of rounding the argument to an integer. static int round(float f) Returns the result of rounding the argument to an integer. public class ggari_mahtRound { public static void main(String[] args) { int num = 156; int num1 = 10; double result = (double) (num) / (double) (num1..
2013.08.07 -
자바format
이건뭐 매일 해깔리 외우지지도 않음 그냥 매일 찾아다녀아함; java format 형식 ex) GregorianCalendar calendar = new GregorianCalendar(Locale.KOREA); System.out.println("Date="+String.format("%tF",calendar)); ta Localized weekday name (abbreviated). format("%ta", cal, cal); Tue tA Localized weekday name (full). format("%tA", cal, cal); Tuesday tb Localized month name (abbreviated). format("%tb", cal); Apr tB Localized month n..
2013.07.26