关于jsp

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

pageEncoding="ISO-8859-1"%>

//导入包

<%@page import="java.util,base.*" %>

Insert title here

<%

public void jspInit(){

System.out.println("Hello world 123");

}

%>

//代码片段

<%

out.println("hello world");

%>

//声明

<%!int i = 0; %>

//表达式

<%!int value = 1; %>

<%= (new Java.util.Data()).toString() %>

<%=value %> <%out.print(value);%>

<%-- 这里的<%=value %> = <%out.print(value);%> --%>

<%--jsp的注释--%>

//include指令

<%@include file="file.html" %>//相对与当前JSP文件的路径

//隐式对象

<% out.print(request.getParameter("name"));%>

代码片段,不能写方法,可以写方法里边的代码

声明:必须加分号,用于创建变量

表达式:不能加分号

你可能感兴趣的:(java,开发语言)