I'am a big fan of http://php.net/manual/en/function.flush.php

Can I do the same thing using Java?

thanks for your help

link|improve this question
1  
are you using jsp, a servlet, some other framework, or? – Bozho Sep 24 '10 at 10:35
the reply would be: "struts" if it helps – Tuf Sep 27 '10 at 13:19
feedback

2 Answers

up vote 3 down vote accepted

Since the equivalent of PHP in java is jsp+servlets, here are the ways to do it:

  • in a servlet, call response.getOutputStream().flush()
  • in a jsp it's the same, but you have to specify <%@ page autoFlush="false" %>
link|improve this answer
feedback

OutputStream.flush()

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.