'분류 전체보기'에 해당되는 글 135건
- 2011.05.04 뽀로로의 위엄
- 2009.02.19 [JAVA] 세션 사용
- 2009.02.15 [jsp] JNDI 설정 context.xml
- 2009.02.15 [jsp] include 방법
- 2009.02.13 [JSP] JNDI, pool 사용시 멈춤현상 해소 방법
- 2009.01.23 [java] PHP의 explode() 함수의 기능 구현하기
- 2009.01.23 [java] 문자열에서 문자 추출하기
- 2009.01.23 [java] 문자열로부터 문자 추출하기
- 2009.01.23 [java] 문자열의 시작과 끝을 검사하기
- 2009.01.21 [자바] 대소문자 구분하지 않고 문자열 비교하기
- 2009.01.16 [Oracle] 인덱스(Index) 이용하기
- 2009.01.16 Oracle Clob Type 이용하기
- 2009.01.11 [eclipse] workspace와 jvm을 지정하는 바로가기 만들기
- 2009.01.07 [oracle] database 생성 - Configuration Assistant
- 2008.12.29 [jsp] 파일업로드
카테고리 없음2011. 5. 4. 17:24
자바기초2009. 2. 19. 11:53
JSP2009. 2. 15. 18:14
JSP2009. 2. 15. 13:27
JSP2009. 2. 13. 23:07
자바기초2009. 1. 23. 21:57
자바기초2009. 1. 23. 21:28
char ch = Character.toLowerCase(text.charAt(5));
// text 문자열의 6번째 문자를 추출하여 소문자로 변환하여 ch에 저장한다.
Character.isLetter(ch); // 문자이면 true
Character.isWhitespace(ch); // 공백이면 true
int index = text.indexOf('a'); // 'a' 가 존재하는 첫 번째 인덱스 위치를 리턴 ( 없으면 -1 리턴 )
lastIndexOf() 는 마지막 부터 조사하여 리턴하고...
검색위치를 지정하고자 한다면.
text.indexOf('a',startIndex); 와 같이 하면 됩니다.
text.substring(5); // 6번째부터 마지막 까지의 문자열을 반환한다.
// text 문자열의 6번째 문자를 추출하여 소문자로 변환하여 ch에 저장한다.
Character.isLetter(ch); // 문자이면 true
Character.isWhitespace(ch); // 공백이면 true
int index = text.indexOf('a'); // 'a' 가 존재하는 첫 번째 인덱스 위치를 리턴 ( 없으면 -1 리턴 )
lastIndexOf() 는 마지막 부터 조사하여 리턴하고...
검색위치를 지정하고자 한다면.
text.indexOf('a',startIndex); 와 같이 하면 됩니다.
text.substring(5); // 6번째부터 마지막 까지의 문자열을 반환한다.
자바기초2009. 1. 23. 21:19
자바기초2009. 1. 23. 20:59
자바기초2009. 1. 21. 23:26
Oracle2009. 1. 16. 23:06
EJB2009. 1. 16. 21:44
con = ds.getConnection();
ps = con.prepareStatement("update board set name=?, title=?, content=empty_clob() where seq=?");
ps.setString(1, boardData.getName());
ps.setString(2, boardData.getTitle());
ps.setInt(3, boardData.getSeq());
ps.executeUpdate();
ps.close();
ps = con.prepareStatement("select content from board where seq=? for update");
ps.setInt(1, boardData.getSeq());
rs = ps.executeQuery();
rs.next();
java.sql.Clob clob_content = rs.getClob(1);
Writer writer1 = ((weblogic.jdbc.common.OracleClob)clob_content).getCharacterOutputStream();
StringReader sr = new StringReader(boardData.getContent());
char[] buffer1 = new char[512];
int readCount = 0;
while((readCount = sr.read(buffer1)) != -1){
writer1.write(buffer1, 0, readCount);
}
sr.close();
writer1.close();
ps = con.prepareStatement("update board set name=?, title=?, content=empty_clob() where seq=?");
ps.setString(1, boardData.getName());
ps.setString(2, boardData.getTitle());
ps.setInt(3, boardData.getSeq());
ps.executeUpdate();
ps.close();
ps = con.prepareStatement("select content from board where seq=? for update");
ps.setInt(1, boardData.getSeq());
rs = ps.executeQuery();
rs.next();
java.sql.Clob clob_content = rs.getClob(1);
Writer writer1 = ((weblogic.jdbc.common.OracleClob)clob_content).getCharacterOutputStream();
StringReader sr = new StringReader(boardData.getContent());
char[] buffer1 = new char[512];
int readCount = 0;
while((readCount = sr.read(buffer1)) != -1){
writer1.write(buffer1, 0, readCount);
}
sr.close();
writer1.close();
이클립스2009. 1. 11. 10:01
Oracle2009. 1. 7. 21:13
JSP2008. 12. 29. 19:39