R: [OT] RE: Error : request.getReader() 2007-01-25 - By Marcello Savino
Back Very interesting approach, thanks a lot
Marcello Savino ALDEBRA S.p.A. tel. 0461302441
-- --Messaggio originale-- -- Da: Dave Newton [mailto:DNewton@(protected)] Inviato: gioved? 25 gennaio 2007 15.49 A: Struts Users Mailing List Oggetto: [OT] RE: Error : request.getReader()
From: Marcello Savino > I really don't undestand what you mean. > Can you explain with a little example ?
http://www.phptr.com/articles/article.asp?p&119&seqNum=7&rl=1
http://java.sun.com/developer/Books/javaserverpages/cservletsjsp/index.h tml has a link (PDF) to the chapter about creating custom tags which might also help.
In a nutshell, look at the tag's doAfterBody method (this is from the first link):
public class FilterTag extends BodyTagSupport { public int doAfterBody() { BodyContent body = getBodyContent(); String filteredBody ServletUtilities.filter(body.getString()); //...etc.
body.getString() gives you the rendered contents of the tag's body.
Dave
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------ To unsubscribe, e-mail: user-unsubscribe@(protected) For additional commands, e-mail: user-help@(protected)
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------ To unsubscribe, e-mail: user-unsubscribe@(protected) For additional commands, e-mail: user-help@(protected)
|
|