ServletInputStream in = request.getInputStream();
byte[] buf = new byte[8 * 1024];
int result = 0;
do {
result = in.readLine(buf, 0, buf.length); // this.readLine() does +=
if (result != -1) {
logger.debug("1:"+new String(buf, 0, result, "utf-8"));
}
} while (result == buf.length); // loop only if the buffer was filled
대략 이런식..
'개인적인 프로그램 > JAVA/JSP' 카테고리의 다른 글
한글파라미터 문제 (0) | 2011.10.26 |
---|---|
ajax 한글처리 (0) | 2011.10.26 |
java 썸네일 thumbnail (0) | 2011.10.26 |
흠 static{} 이걸 왜 쓰는걸가? (0) | 2011.10.26 |
javascript로 동영상을 목록으로 재생하는 방법에 대해서. (0) | 2011.10.26 |