HttpSession1 [JSP&Servlet] 서블릿오류처리,쿠키,세션트레킹,리스너,요청재지정 [JSP&Servlet] 서블릿오류처리,쿠키,세션트레킹,리스너,요청재지정 > 서블릿에서의 오류처리 01.try-catch try { int arr[] = new int[3]; arr[3] = 23; // 배열오류 new ArrayIndexOutOfBoundsException int a = 123/0; // new ArithmeticException() String s = new String("java"); s.length(); s=null; s.length(); //오류발생 = new NullPointException() } catch (NullPointException e1) { 널포인트입셉션이 나왔을때 처리할 내용 /// } catch (ArithemeticException e2) { 처리할 내용 /.. 2020. 5. 19. 이전 1 다음