一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

【web】http长连接技术(3)http push的jsp实现

时间:2008-05-17 编辑:简简单单 来源:一聚教程网

   标签:web  push jsp

push-html-stream.jsp


  
  


<%
  try {
    for (int i=1; i < 10; i++) {
       out.print("

"+i+"

");
       out.flush();
     
       try {
            Thread.sleep(3000);
       } catch (InterruptedException e) {
            out.print("

"+e+"

");
       }
     }
   } catch (Exception e) {
       out.print("

"+e+"

");
   }
   out.print("

DONE

");

%>


<