?? hello.jsp
字號:
<%@ page language="java" %><%@ page contentType="text/html;charset=GBK" %><!DOCTYPE HTML PUBLIC "-//w3c//dtd html 4.0 transitional//en"><%! private static final String DEFAULT_NAME = "World"; %><HTML> <HEAD> <TITLE>Hello JavaServer Page</TITLE> </HEAD> <%-- Determine the specified name (or use default) --%> <% String name = request.getParameter("name"); name = new String(name.getBytes("ISO8859_1"),"GBK"); if ( (name == null) || (name.length() == 0) ) { name = DEFAULT_NAME; } %> <BODY BGCOLOR='cyan'> <B>Hello, <%= name %></B> </BODY></HTML>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -