方法 | 说明 |
---|---|
void print() | 将内容直接打印在 HTML 标签中 |
void println() | 类似于 print,唯一区别是 println 方法添加了换行符 |
void newLine() | 输出换行字符 |
void clear() | 清除页面缓冲区 |
boolean isAutoFlush() | 检查页面是否自动清除缓冲区 |
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ page import="java.util.*"%> <!DOCTYPE html> <html> <head> <title>编程帮(www.lmcjl.com)</title> </head> <body> <% out.print("欢迎来到编程帮,"); out.newLine(); out.println("我们的网址是:"); out.print("www.lmcjl.com"); %> </body> </html>运行结果如下:
index.jsp运行结果
本文链接:http://task.lmcjl.com/news/14510.html