jsp环境的配置及设置Web服务目录1、编写两个简单的JSP页面(1)英文字母表;(2)输出九九乘法表;

<%@ page language="java" contentType="text/html; charset=utf-8"

    pageEncoding="utf-8"%>

<!DOCTYPE html>

<html>

<head>

<meta charset="ISO-8859-1">

<title>Insert title here</title>

</head>

<body>

<p style="font-family:黑体;font-size:36">

<br>英文字母表:</br>

</p>

<p style="font-family:宋体;font-size:25;color:blue">

<%char upperCase;

char lowerCase;

for(upperCase='A';upperCase<='Z';upperCase++){

lowerCase=(char)(upperCase+32);

out.print(upperCase+"("+lowerCase+")"+" ");

if(upperCase=='M')

out.print("<br>");

}

%>

</p>

</body>

</html>

上一篇:在 PostgreSQL 中,解决图片二进制数据,由于bytea_output参数问题导致显示不正常的问题。


下一篇:MySQL