我的第一个JSP程序

我tm爽爆

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%!
	public String bookName ;
	public void init()
	{
		bookName = "java书";
	}

%>

===hello index1 您好====
<%
  String name = "zhangsan";
  out.print("hello.."+name);
  init();
 %>
 
<%="hello..."+bookName %>

</body>
</html>

猜你喜欢

转载自blog.csdn.net/k_koris/article/details/83050672