日期:2014-05-18  浏览次数:20705 次

请教两句代码的意思。
标红和标紫的代码的意思。
Java code

    public int doEndTag() throws JspTagException 
    {
        System.out.println("doEndTag");
        try 
        {  
             if(bodyContent != null)  
             {
                [color=#FF0000]JspWriter out=bodyContent.getEnclosingWriter();
                 bodyContent.writeOut(out);[/color]
                
                [color=#800080]bodyContent.writeOut(bodyContent.getEnclosingWriter()); [/color]
             }
        } 
        catch(java.io.IOException e)
        {
            throw new JspTagException("IO Error: " + e.getMessage());  
        }   
        return EVAL_PAGE;  
    }



------解决方案--------------------
好像是自定义标签中的一部分代码
------解决方案--------------------
public int doEndTag() throws JspTagException 
{
System.out.println("doEndTag");
try 
{
if(bodyContent != null)
{
JspWriter out=bodyContent.getEnclosingWriter();
bodyContent.writeOut(out);

bodyContent.writeOut(bodyContent.getEnclosingWriter());
}

catch(java.io.IOException e)
{
throw new JspTagException("IO Error: " + e.getMessage());
}
return EVAL_PAGE;
}


------解决方案--------------------
对,是struts框架里的自定义标签里的内置方法! 

红色语句和紫色语句表达的意思是一样的: 将当前内容按客户端浏览器默认字符集输出到页面吧!