out.write(new String("HTTP/1.1 200 OK\r\n").getBytes());
out.write(new String("Cache-Control: private\r\n").getBytes());
out.write(new String("Content-Length: "+msg.getBytes().length+"\r\n").getBytes());
out.write(new String("Content-Type: text/html; charset=UTF-8\r\n\r\n").getBytes());
'코딩 > JAVA' 카테고리의 다른 글
Java 자바 Stateless 방식 멀티채팅 예제(익명 쓰레드 Thread) (0) | 2014.09.13 |
---|---|
Java 자바 Agentlet Mp3 Server (0) | 2014.09.13 |
(4) Java 자바 Mp3 파일 전송 서버 예제 (Mp3Server) (1) | 2014.09.13 |
(3) Java 자바 Mp3 파일 전송 서버 및 Key Annotation 예제 (Mp3Client) (0) | 2014.09.13 |
(2) Java 자바 파일 복사 전용 함수(CopyUtil) (0) | 2014.09.13 |