자바에서 String 문자열 길이 구하는 방법 자바에서 String의 길이를 추출하려면 length() 메소드를 사용하면 된다!(배열의 길이를 구하는 length랑 이름이 같다!) 예제는 다음과 같다. String str = "abc"; System.out.println(str.length()); // 3이 출력됨 더보기 자바스크립트로 text-decoration 속성 부여하는 방법 자바스크립트로 text-decoration 속성을 부여하려면 다음과 같이 처리하면 된다!(style.text-decoration이라고 접근했다가 막힌 경험이 있었다!) document.getElementById("foo").style.textDecoration = "underline"; 더보기 스프링 RequestMapping에서 파라미터 받아오는 예제(@RequestParam을 이용) 스프링에서 Controller를 통해 RequestMapping을 할 때 파라미터는 다음과 같이 받아올 수 있다!(@RequestParam을 이용해서) 매개 변수에 어노테이션이 들어가는 형태인데 스프링이 얼마나 위대한(?) 프레임워크인지 다시 한 번 느낄 수 있다! import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.a.. 더보기 이전 1 ··· 26 27 28 29 30 31 32 ··· 87 다음