how to call file in to jsp?

后端 未结 1 483
孤独总比滥情好
孤独总比滥情好 2021-01-28 19:27

This my JSP page.

<%@ page language=\"java\" contentType=\"text/html; charset=ISO-8859-1\"
        pageEncoding=\"ISO-8859-1\" %>


    

        
相关标签:
1条回答
  • 2021-01-28 20:11

    Inside <jsp:useBean> you have wrote <%= link.callconst()%>

    <body>
    
        <jsp:useBean id="link" class="com.Sshexample">
    
        <%= link.callconst()%>
    
        </jsp:useBean>
    
        </body>
    

    Use this

    <body>
    
        <jsp:useBean id="link" class="com.Sshexample"></jsp:useBean>
    
         <%= link.callconst()%>
        </body>
    
    0 讨论(0)
提交回复
热议问题