1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <%long pstart = System.currentTimeMillis();%> <table border="1" width="100%" height="500"> <caption> 普通例子 </caption> <tr> <td> <% long start = System.currentTimeMillis(); Thread.sleep(1000); long seconds = System.currentTimeMillis() - start; %> 1 秒的内容 <br> 加载耗时:<%=seconds%> 毫秒 ; </td> // 中间的省略 //... <td> <% start = System.currentTimeMillis(); Thread.sleep(6000); seconds = System.currentTimeMillis() - start; %> 6 秒的内容 <br> 加载耗时:<%=seconds%> 毫秒 ; </td> </tr> </table> <%seconds = System.currentTimeMillis() - pstart;%> 整个页面加载耗费了:<%=seconds%> 毫秒 |
欢迎光临 电子技术论坛_中国专业的电子工程师学习交流社区-中电网技术论坛 (http://bbs.eccn.com/) | Powered by Discuz! 7.0.0 |