분류 전체보기
-
URL vs URIJSP 2019. 8. 30. 14:03
먼저 약자를 살펴보면 아래와 같다. Uniform Resource Identifier 영어 단어로만 해석 해보면, "균일하된 자원 식별자" 정도로 해석할 수 있겠다. 식별자라 하는 것은 구별되는 것이다. 즉, 인터넷에서 구별되어야 하는곳은 주소창이고 그러한 구분된 식별자를 통해 인터넷 사용자는 원하는 곳으로 접속 할 수 있는 것이다. 바꿔 말하면, 특정 사이트를 접속하기 위해 인터넷 주소창에 적는 문자열은 전부 URI라 표현할 수 있는 것이다. URL 의 약자를 풀어보면 아래와 같다. Uniform Resource Locator 균일화 된 자원 위치 정도로 해석할 수 있겠다. 무슨 의미일까? URI 랑 비슷하지만, URI랑은 확실한 차이점이 존재한다. (URI - http://mommoo.tistory...
-
피보나치 수열Java 2019. 8. 23. 13:44
package kr.green.exam; /* 오늘의 문제 ======== 1 1 2 3 5 8 ..... 피보나치 수열을 1줄에 5개씩 30개를 출력하시오!! ----------------------------------------------------- 1. 변수 2개를 선언하여 0과 1로 초기화 한다. 2. 두번째 변수 값을 출력한다. 3. 개수가 5의 배수면 줄바꿈 4. 임시 변수에 두번째 값을 피신 시킨다. 5. 두개 변수 값을 더해 두번째 변수에 넣는다. 6. 임시 변수 값을 첫번째 변수에 넣는다. 7. 개수가 30일때 까지 2~6을 반복한다. */ public class FibonacciNumber { public static void main(String[] args) { int first..
-
JsonJava Script 2019. 5. 29. 10:10
var json = '{"result":true, "count":42}'; obj = JSON.parse(json); console.log(obj.count); // expected output: 42 console.log(obj.result); // expected output: trueconsole.log(JSON.stringify({ x: 5, y: 6 })); // expected output: "{"x":5,"y":6}" console.log(JSON.stringify([new Number(3), new String('false'), new Boolean(false)])); // expected output: "[3,"false",false]" console.log(..
-
HTML 제거하기Database/기타 2019. 5. 27. 18:11
HTML 태그 제거하기 1. java Script Remove all tag test 2. Java public class HTMLUtil { /** * 모든 HTML 태그를 제거하고 반환한다. * * @param html * @throws Exception */ public static String removeTag(String html) throws Exception { return html.replaceAll("]*)?(\\s)*(/)?>", ""); } public static String removeTag(String html,String tag) throws Exception { return html.replaceAll("]*)?(\\s)*(/)?>", ""); } public static v..
-
HTML 유틸Java 2019. 5. 27. 18:05
package kr.ezen.db; public class HTMLUtil { /** * 모든 HTML 태그를 제거하고 반환한다. * * @param html * @throws Exception */ public static String removeTag(String html) throws Exception { return html.replaceAll("]*)?(\\s)*(/)?>", ""); } public static String removeTag(String html,String tag) throws Exception { return html.replaceAll("]*)?(\\s)*(/)?>", ""); } public static void main(String[] args) { String ori..
-