jsp学习之scriptlet的使用方法详解

2023-12-05 0 590

scriptlet的使用

  • jsp页面中分三种scriptlet:
  • 第一种:<% %> 可以在里面写java的代码。定义java变量以及书写java语句。
  • 第二种:<%! %> 可以在里面定义全局变量以及方法,类。
  • 第三种:<%=%> 用于打印变量或者输出值。

<% %>的使用

<html>
<head>
<title>this is java page</title>
</head>
<body>
<!–显示注释 注释内容 –>

<%

int x=10;
int y=20;
String str=request.getParameter(\”info\”);
out.println(\”<h1>\”+str+\”</h1>\”);
out.println(\”<h1>\”+(x+1)+\”</h1>\”);
out.println(\”<h2>\”+y+\”</h2>\”);

%>

</body>

</html>

<%! %>的使用

<html>
<head>
<title>this is java page</title>
</head>
<body>
<!–显示注释 注释内容 –>

<%!
public static final int x=10;

%>
<%!
public int add(int x,int y)
{
return x+y;
}
%>

<%!
class person
{
private String name;
private int age;
public person(String name,int age)
{
this.name=name;
this.age=age;
}

public String toString()
{
return \”name=\”+name+\”,age=\”+age;
}

}

%>
<%!
public int li=20;

%>
<%
person p=new person(\”test\”,10);
out.println(p);
out.println(li);
out.println(add(x,20));
%>
<%
int b=10;
out.println(b);
%>
</body>

</html>

<%= %>的使用

<html>
<head>
<title>this is java page</title>
</head>
<body>
<!–显示注释 注释内容 –>

<%

int x=10;
int y=20;
String str=request.getParameter(\”info\”);

%>
<%=x%>
<%=y%>
<%=\”strinsssa\”%>
</body>

</html>

到此这篇关于jsp学习之scriptlet的使用方法详解的文章就介绍到这了,更多相关jsp scriptlet 内容请搜索悠久资源网以前的文章或继续浏览下面的相关文章希望大家以后多多支持悠久资源网!

您可能感兴趣的文章:

  • JS pushlet XMLAdapter适配器用法案例解析
  • 如何将JSP/Servlet项目转换为Spring Boot项目
  • Jsp+Servlet实现简单登录注册查询
  • JavaScript中ES6规范中let和const的用法和区别
  • jsp+servlet简单实现上传文件功能(保存目录改进)
  • 基于leaflet.js实现修改地图主题样式的流程分析
  • leaflet加载geojson叠加显示功能代码
  • JavaScript中let避免闭包造成问题

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

悠久资源 JSP编程 jsp学习之scriptlet的使用方法详解 https://www.u-9.cn/biancheng/jsp/96599.html

常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务