프로그램
-
Unreal 관련 자료 정리프로그램/unreal engine 관련 2015. 4. 13. 21:10
시간에 따른 조명 변화Easy Things Are Easy : How to Make Timershttps://wiki.unrealengine.com/Videos/Player?series=PLZlv_N0_O1gYeJX3xX44yzOb7_kTS7FPM&video=BeztKC4cO18Event begin play -> set timer (function 에 렌덤 컬러를 세팅할 함수 입력, 타이머 입력 ex) 0.5 루프 on근데 여기 자막에 보면 ESC 누를때 쿠앙 쿠앙 누가 넣었냐?ㅋㅋㅋㅋ이런거 너무 좋아 헤헤헤헤헤 물건을 떨어뜨렸을때 깨지는 형상을 구현하는 동영상https://wiki.unrealengine.com/Videos/Player?series=PLZlv_N0_O1gYeJX3xX44yzOb7_kTS..
-
Can not issue data manipulation statements with executeQuery(). , Type mismatch: cannot convert from int to ResultSet프로그램/JSP 2008. 12. 17. 16:48
java.sql.SQLException: Can not issue data manipulation statements with executeQuery(). 오류. String query ="insert into bbs (id,pwd) values ("+id+","+pwd + ")"; stmt = conn.createStatement(); rs = stmt.executeQuery(query); Select 를 제외한 쿼리를 실행할 경우 stmt.executeUpdate(query); 를 써야만 한다. An error occurred at line: 21 in the jsp file: /insert.jsp Type mismatch: cannot convert from int to ResultSet 18: 1..
-
Invalid directive 에러프로그램/JSP 2008. 12. 17. 16:35
Invalid directive 이 오류의 범인은 org.apache.jasper.JasperException: /han58/insert.jsp(4,1) Invalid directive org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:40) org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407) org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:88) org.apache.jasper.compiler.Parser.parseDirective(Parse..
-
-
다시 공부해야함 ㅠㅠ...아니 이제 공부해야함프로그램/JAVA 2008. 12. 3. 09:30
1. 자바 프로그래밍 - 기본 자바 구문(if, for문 기본 문법) - 객체 지향 기본(다양성, 캡슐화) - 스레드, 싱크로나이즈, 객체 직렬화 개념 이해 - swing이나 네트웍 프로그래밍은 못해도 웹하고 크게 상관없음 2. Servlet/JSP - 서블릿의 작동원리(Http Request/reponse 등의 이해) - 서블릿 컨테이너의 개념이해(filter, listener, session등의 컨테이너의 기본기능) - JSTL과 EL 이해(JSP 2.0 버전) - Custom Tag Handler 작동 원리 이해 및 커스텀 태그 작성 가능 3. Database - 관계형 데이터 베이스 논리적 모델링 설계 가능(Entity 및 Attribute 및 relation의 이해) - 최소 제3정규화까지는 이..
-
getElementById 와 getElementsByName 의 차이프로그램/JavaScript 2008. 11. 26. 14:41
먼저 공통점으로는, 둘 다 Document 오브젝트 내장함수라는 것. 'getElementById'는 브라우저의 오브젝트를 id기준으로 찾아내고, 'getElementsByName'는 name으로 찾아내서, 해당 오브젝트에 대한 참조를 반환한다. 'getElementById'와 'getElementsByName'의 차이는 단일값이냐? 아니면 배열값이냐? 라는 차이로 보면 쉬울듯. 의 값을 알고자 한다면 스크립트로.. var Obj = document.getElementById("test"); alert( Obj.value );// 바보가 출력되겠삼 다음으로 getElementsByName의 예는, var obj = document.getElementsByName("test"); alert( obj[0]...