- 浏览: 798956 次
- 性别:
- 来自: 北京
最新评论
-
yizishou:
IE9- Only
javascript中createTextRange用法(focus) -
huanzei:
还可以了,po主的第一个方法可行,第二个方法没有试
jsp表格的表头固定不动 -
javams:
Soongtracy 写道方法二完全不行啊亲,你自己有木有试过 ...
jsp表格的表头固定不动 -
mengy163163:
您好,有个问题想请教一下:"birt生成Excel缺 ...
BIRT报表 -
zzy2011266:
楼主,你找到原因了吗?这是为啥?貌似是JVM出bug了
JAVA异常 EXCEPTION_ACCESS_VIOLATION (0xc0000005)
文章列表
判断字符串是不是数字,大家可能会用一些java自带的方法,也有可能用其他怪异的招式,比如判断是不是整型数字,将字符串强制转换成整型,不是数字的就会抛出错误,那么就不是整型的了。但本文介绍的比较好的两种方法:1。java类库自带的方法:
public boolean isNum(String msg){
if(java.lang.Character.isDigit(msg.charAt(0))){
return true;
}
return false;
}
更新:发现以上方法写得不够到位,现在就改为下面的简单说明了,至于具体的方法实现字符串判断是否数字就不写了。java ...
- 2009-07-20 16:38
- 浏览 4994
- 评论(0)
比如现在有一人员表(表名:peosons) 若想将姓名、身份证号、住址这三个字段完全相同的记录查询出来 select p1.* from persons p1,persons p2 where p1.idp2.id and p1.cardid = p2.cardid and p1.pname = p2.pname and p1.address = p2.address 可以实现上述效果.
几个删除重复记录的SQL语句
1.用rowid方法
2.用group by方法
3.用distinct方法
1。用rowid方法
据据oracle带的rowid属性,进行 ...
- 2009-07-18 11:50
- 浏览 1991
- 评论(0)
方法
说明
Restrictions.eq
=
Restrictions.allEq
利用Map来进行多个等于的限制
Restrictions.gt
>
Restrictions.ge
>=
Restrictions.lt
- 2009-07-16 10:08
- 浏览 1374
- 评论(0)
方法一:
<SCRIPT language=JavaScript>
<!--
tmpDate = new Date();
date = tmpDate.getDate();
month= tmpDate.getMonth() + 1 ;
year= tmpDate.getYear();
document.write(year);
document.write("年");
document.write(month);
document.write(&q ...
- 2009-07-13 21:31
- 浏览 1240
- 评论(0)
方法一:
<table width=400 border=1 bgcolor=yellow>
<tr><td height=30>
<table width=100% border=1>
<tr><td width=24% align=center>表头1</td>
<td width=24% align=center>表头2</td>
<td width=24% align=center>表头3</td>
<td width=24% al ...
- 2009-07-11 15:49
- 浏览 19478
- 评论(4)
最近在项目中使用 Spring 和 Hibernate 进行开发,有感于 Criteria 比较好用,在查询方法设计上可以灵活的根据 Criteria 的特点来方便地进行查询条件的组装。现在对 Hibernate的Criteria 的用法进行总结: Hibernate 设计了 CriteriaSpecification 作为 Criteria 的父接口,下面提供了 Criteria和DetachedCriteria 。 Criteria 和 DetachedCriteria 的主要区别在于创建的形式不一样, Criteria 是在线的,所以它是由 Hibernate Session ...
- 2009-07-10 17:41
- 浏览 1038
- 评论(0)
<script>
//检验身份证
function isIdCard(s)
{
var patrn = /^\s*\d{15}\s*$/;
var patrn1 = /^\s*\d{16}[\dxX]{2}\s*$/;
if(!patrn.exec(s) && !patrn1.exec(s))
{
alert("false");
return false;
}
alert("true");
return true;
}
& ...
- 2009-07-08 09:59
- 浏览 1432
- 评论(0)
TextRange对象是动态HTML(DHTML)的高级特性,使用它可以实现很多和文本有关的任务,例如搜索和选择文本。文本范围让您可以选择性的将字符、单词和句子从文档中挑选出来。TextRange对象是在HTML文档将要显示的文本流上建立开始和结束位置的抽象对象。下面是TextRange的常用属性与方法:属性 boundingHeight 获取绑定TextRange对象的矩形的高度 boundingLeft 获取绑定TextRange 对象的矩形左边缘和包含TextRange对象的左侧之间的距离 offsetLeft 获取对象相对于版面或由offsetParent属性指定的父坐标的计算左侧位置 ...
- 2009-07-04 12:32
- 浏览 1561
- 评论(0)
createtextrange createrange区别:
对象或元素不同,虽然都是返回TextRange。例如:
var r=document.body.createTextRange() var r=document.createRange()
document. createTextRange 可以对body、TEXTAREA、BUTTON创建TextRange,Range -- 范围
返回createTextRange的text和htmlText
<script language="javascript"> ...
- 2009-07-04 12:00
- 浏览 36491
- 评论(2)
location的各个属性
- 博客分类:
- javascript
hash——Specifies an anchor name in the URL. host——Specifies the host and domain name, or IP address, of a network host. hostname——Specifies the host:port portion of the URL. href——Specifies the entire URL. pathname——Specifies the URL-path portion of the URL. port——Specifies the communications por ...
- 2009-06-27 15:15
- 浏览 1480
- 评论(0)
今天首次使用Struts2,配置一切正常,使用常用tag也正常,但是在使用<s:form>标记时,发现控制台总是输出警告信息, 警告信息内容如下: 警告: No configuration found for the specified action: 'ShowMessage' in namespace: ''. Form action defaulting to 'action' attribute's literal value. 2008-9-6 11:35:47 org.apache.struts2.components.Form evaluateExtraParamsSe ...
- 2009-06-27 12:16
- 浏览 1212
- 评论(0)
有两种方式: 全局修改 和 局部修改
缺省情况下, 所有的装换错误使用通用的i18n信息 xwork.default.invalid.fieldvalue , 你可以在你的全局il8n资源包中替换他(缺省文本是"Invalid field value for field xxx", 这里xxx是字段名称).
局部修改:
无论如何, 有时你会希望能够在每个字段上替换这一信息. 你可以在action相关的资源文件(Action.properties)中添加一个i18n信息: invalid.fieldvalue.xxx, 这里xxx是字段名称.
需 ...
- 2009-06-25 21:09
- 浏览 11209
- 评论(0)
struts2中标签的相互嵌套
- 博客分类:
- Struts2.x
<s:textfield label="结束日期" name="dicAgency.enddate" size="50" maxlength="50" required="true">
<s:param name="value"><s:date name="dicAgency.enddate" format="yyyy-MM-dd"/></s:param>
</s:textfi ...
- 2009-06-25 10:58
- 浏览 1406
- 评论(0)
页面:
session范围取值:
<s:property value="#session.mySessionPropKey"/>
<s:property value="#session['mySessionPropKey']"/>
request范围取值:
<s:property value="#request['myRequestPropKey']"/>
在session中取值容易只要通过 %{#变量.属性名}即可,但在request 中取值比 ...
- 2009-06-22 21:51
- 浏览 5769
- 评论(0)
方法之一:
var SomeVar; //变量名
if (typeof(SomeVar) == 'undefined')
…………
方法之二
if SomeVar+''=='undefined'
方法之三
<script language="javascript">
var s;
alert( !s);
alert(s==null);
alert(typeo ...
- 2009-06-22 10:47
- 浏览 2849
- 评论(0)