1 6 7 package albel.tags.table.utils; 8 9 import javax.servlet.jsp.*; 10 import javax.servlet.*; 11 import javax.servlet.jsp.tagext.*; 12 import javax.servlet.http.*; 13 17 public class Writer 18 { 19 20 21 public Writer() 22 { 23 } 24 public static void write(PageContext ctx,String str)throws JspException 25 { 26 JspWriter out=ctx.getOut(); 27 try 28 { 29 out.write(str); 30 } 31 catch (java.io.IOException e) 32 { 33 throw new JspException(e); 34 } 35 } 36 } 37 | Popular Tags |