摘要:
if (!+[ 1, ]) { //是IE浏览器} else { if (document.documentMode == 10) { //单独判断IE10 } else //非IE浏览器 }} 阅读全文
摘要:
import java.util.regex.Matcher;import java.util.regex.Pattern;private static String regex1="[0-9a-zA-Z]+((\\.com)|(\\.cn)|(\\.org)|(\\.net)|(\\.edu)|(... 阅读全文
摘要:
//逐行读取日志记录package com.expai.test;import java.io.BufferedReader;import java.io.FileInputStream;import java.io.IOException;import java.io.InputStreamRea... 阅读全文
摘要:
第一种是以毫秒为单位计算的。 Java代码 //伪代码 long startTime=System.currentTimeMillis(); //获取开始时间 doSomeThing(); //测试的代码段 long endTime=System.currentTimeMillis(); //获取结... 阅读全文