반응형 프로그래밍53 [JSP] 날짜 포멧에 맞추어 가져오기 먼저 아래와 같은 패키지가 필요하다. import="java.util.*" import="java.text.*" 그리고 아래와 같이 코딩한다. Calendar cal = Calendar.getInstance(); Date currentTime = cal.getTime(); SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd HH:mm:ss"); String ndate = formatter.format(currentTime); (이 코드는 http://kiwibug.tistory.com/2 에서 가져옴) 이렇게 하면.. SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd HH:mm:ss"); 위의.. 2007. 7. 19. [JSP] How to use JDBC for PostgreSQL I can't write in korean right now -_-; 1. download jdbc driver from here. 2. Simply you should put the driver in $CATALINA_HOME/webapps/ROOT/WEB-INF/lib. 3. restart your tomcat. I'll show you simple jsp code. 2007. 7. 11. [JSP] ResultSet에서 empty set resultset.next()를 하게되면 다음 tuple이 있다면 true를 없으면 false를 리턴한다. 따라서 쿼리를 날려서 resultset을 가져 오고.. 그 값이 있으면 이런 정보를, 없으면 다른 정보를 보여주고 싶다면, resultset.next()가 true인지 false인지 참고하여 코딩가능하다. 2007. 3. 31. [PHP] 입력된 글에서 테그 제외한 순수한 글자만 출력하기 $content = ereg_replace("]*>","",$content); 이렇게 사용하면 각종 테그를 제외하고 순수한 내용만 리턴된다. 2007. 3. 31. 이전 1 ··· 8 9 10 11 12 13 14 다음 반응형