jsp的out.print和out.write的区别 一般情况下体现不出区别,在null处理处理上有一些区别 <%String a = null; out.print(a); out.write(a);%>out.print会输出null out.write会输出空白