response.getOutputStream().println();


Returns a ServletOutputStream suitable for writing binary data in the response. The servlet container does not encode the binary data. 

Calling flush() on the ServletOutputStream commits the response. Either this method or getWriter may be called to write the body, not both.


응답에 2 진 데이터를 쓰는 데 적합한 ServletOutputStream을 리턴합니다. 서블릿 컨테이너는 이진 데이터를 인코딩하지 않습니다.

ServletOutputStream에서 flush ()를 호출하면 응답이 커밋됩니다. 이 메소드 또는 getWriter를 호출하여 본문을 작성하고 둘 다 작성할 수는 없습니다.


response.getWriter();


Returns a PrintWriter object that can send character text to the client. The PrintWriter uses the character encoding returned by getCharacterEncoding. If the response's character encoding has not been specified as described in getCharacterEncoding (i.e., the method just returns the default value ISO-8859-1), getWriter updates it to ISO-8859-1. 

Calling flush() on the PrintWriter commits the response. 


문자 텍스트를 클라이언트에 송신 할 수있는 PrintWriter object를 돌려줍니다. PrintWriter는 getCharacterEncoding에 의해 반환 된 문자 인코딩을 사용합니다. getCharacterEncoding에 설명 된대로 응답의 문자 인코딩이 지정되지 않은 경우 (즉, 메서드가 기본값 ISO-8859-1을 반환하는 경우) getWriter는이를 ISO-8859-1로 업데이트합니다.

PrintWriter에서 flush ()를 호출하면 응답이 커밋됩니다.

+ Recent posts