好的,你应该使用servlet而不是JSP,但是如果你确实需要…在页面顶部添加以下指令:
<%@ page trimDirectiveWhitespaces="true" %>
或者在jsp-config部分中,你的web.xml
<jsp-config> <jsp-property-group> <url-pattern>*.jsp</url-pattern> <trim-directive-whitespaces>true</trim-directive-whitespaces> </jsp-property-group></jsp-config>
此外flush/ close中OutputStream和返回完成时。
dataOutput.flush();dataOutput.close();return;



