其他分享
首页 > 其他分享> > JSP脚本和JSP入门学习

JSP脚本和JSP入门学习

作者:互联网

JSP的脚本:JSP定义Java代码的方式


<html>
<head>
    <title>$Title$</title>
</head>
<body>
    <%
        System.out.println("hello jsp");
        response.getWriter().println("jsp hello");
    %>

    <%!
        int x = 100;
    %>

    <%= x %>
</body>
</html>

JSP的内置对象:

标签:脚本,java,定义,入门,getWriter,JSP,response,out
来源: https://www.cnblogs.com/ailhy/p/16587778.html