<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>

<!-- Java代码片段 -->
<%
String str=new String();
//代码片段
%>
<!--  等价的xml写法 下-->
<jsp:scriptlet>
String string=new String();
</jsp:scriptlet>>

<!-- 变量声明 -->
<%! int i,j;String str2=null; %>
<!--等价的写法 -->
<jsp:scriptlet>
int i,j;String str2=null;
</jsp:scriptlet>

<!-- 表达式 -->
<%=str2 %>
<%=string %>
<!-- 等价的写法 -->
<jsp:scriptlet>
str2=null;
out.print(string);
</jsp:scriptlet>>

<%--这是jsp的注释啊 --%>
<!-- 我是html的注释啊 -->

<%-- jsp 指令 --%>
    <!-- page  指令 设置页面属性-->
    <%@ page 属性=value %>
    <%@ page language="java" contentType="text/html; charset=utf-8" import="java.util.*" autoFlush="true" session="true"%>
    
    <!-- include 指令 包含文件 -->
      <%@ include file="url" %>
</body>
</html>