- 浏览: 10490 次
- 性别:
- 来自: 广州
最近访客 更多访客>>
最新评论
-
66573334:
啥玩意儿?
提示div -
yangw1125:
<!doctype html public " ...
interceptString
文章列表
历时一年多的研发,独立开发出一套具有自主可控的在线考试、在线培训系统平台,其功能强大,性能优越,操作简单等特性,采用struts2+hibernate4+spring4 技术开发,如有建议或意向,QQ:531197521
1、进入考试页面
2、答题界面
3、考试结果界面
5、查看答卷界面
6、阅卷界面 7、人工改卷界面 9、考试监控
import java.util.regex.*;
public final class RegExpValidator
{
/**
* 验证邮箱
* @param 待验证的字符串
* @return 如果是符合的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean isEmail(String str)
{
String regex = &q ...
基本操作
response.reset();// 清空输出流
response.setHeader("Content-disposition",
"attachment; filename=listemail.xls");// 设定输出文件头
response.setContentType("application/msexcel");// 定义输出类型
OutputStream os = response.getOutputStream();// 取得输出流
WritableWorkbook wb ...
<style type="text/css">
#idNum {
position: absolute;
right: 424px;
top:447px;
bottom: -1px !important;
bottom: 65px;
}
#idNum li {
float: left;
list-style: none;
color: #fff;
text-align: center;
line-height: 16px;
width: 16px;
height: 16px;
font-family: Arial;
font-siz ...
- 2009-08-01 10:35
- 浏览 1301
- 评论(0)
//验证邮箱格式
function isEmail(strEmail) {
if (strEmail.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) != -1) {
return true;
} else {
return false;
}
}
//Email验证
function checkEmail(a) {
return /\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/.test(a);
/*
var i=a ...
- 2009-07-31 10:40
- 浏览 2475
- 评论(0)
Image croppedImage = null;
ImageFilter cropFilter = new CropImageFilter(left, top, 110, 150); // 截取局部图像
ImageProducer producer = new FilteredImageSource(srcImage
.getSource(), cropFilter);
croppedImage = Toolkit.getDefaultToolkit().createImage(producer);
// System.out.println("截 ...
- 2009-07-24 14:19
- 浏览 1616
- 评论(0)
window.onscroll=scall;
window.onresize=scall;
window.onload=scall;
//--------------
function scall(){
document.getElementById("Javascript.Div5").style.top=(document.documentElement.scrollTop+document.documentElement.clientHeight-document.getElementById("Javascript.Div5").offsetH ...
- 2009-07-20 12:58
- 浏览 980
- 评论(1)
function interceptString(str,len)
{
//length属性读出来的汉字长度为1
if(str.length*2 <= len)
{
return str;
}
var strlen = 0;
var s = "";
for(var i = 0;i < str.length; i++)
{
if(str.charCodeAt(i) > 128)
{
strlen = strlen + 2;
if(strlen > len)
{
return s.substrin ...
- 2009-05-25 16:32
- 浏览 1391
- 评论(1)