- 浏览: 20076 次
- 性别:
- 来自: 北京
最新评论
文章列表
在web.xml 中配置如下:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath*:conf/spring/applicationContext_core*.xml,
classpath*:conf/spring/applicationContext_dict*.xml,
classpath*:conf/spring/applicationContext_hibernate.xm ...
classpath:只会到你的class路径中查找找文件;
classpath*:不仅包含class路径,还包括jar文件中(class路径)进行查找.
var ds = eval('('+string+')');
flex 4.0 鼠标拖动效果实现
- 博客分类:
- flex开发
//鼠标拖动效果
private function mouseDown_startDrag(event:MouseEvent):void{
event.currentTarget.startDrag();
}
private function click_stopDrag(event:MouseEvent):void{
event.currentTarget.stopDrag();
}
request.getHeader("User-Agent"); //就是取得客户端的系统版本
request.getRemoteAddr(); //取得客户端的IP
request.getRemoteHost() //取得客户端的主机名
request.getRemotePort(); //取得客户端的端口
request.getRemoteUser(); //取得客户端的用户
request.getLocalAddr(); //取得本地IP
request. ...
<xsl:value-of select= "@name "/>
得到节点的属性为name的值;
<xsl:value-of select= "name "/>
得到name节点的值
判断的第三位数字是否为2的正则表达式
var number = 1020000;
var reg1 = /^10[2]{1}\d{4}$/;
if(reg1.text(number))
{
alert('该数是所需的数');
}
select sqrt(64) from dual;
64开方的数
----------------------------------------
select power(8,2) from dual;
8是数,2是乘的次数,就是8*8;
适当的使用索引可以提高数据检索速度,可以给经常需要进行查询的字段创建索引 oracle的索引分为5种:唯一索引,组合索引,反向键索引,位图索引,基于函数的索引 创建索引的标准语法: CREATE INDEX 索引名 ON 表名 (列名) TABLESPACE 表空间名;
select
sum(case when ( 字段名>0 and 字段名<4000) then 1 else 0 end) 别名,
sum(case when 字段名>=4000 and 字段名<8000 then 1 else 0 end) 别名,
sum(case when 字段名>=8000 then 1 else 0 end) 别名 ,
count(*) as total
from 表名
今天遇到了一个向Map里put数据的时候,放进去的顺序是乱得,没有按照先后顺序排列。在网上找到了解决办法,用LinkedHashMap来存储,如下:
Map<String, Object> map = new LinkedHashMap<String, Object>();
map.put(key,value);
//最常规的一种遍历方法,最常规就是最常用的,虽然不复杂,但很重要,这是我们最熟悉的,就不多说了!!
public static void work(Map<String, Student> map) {
Collection<Student> c = map.values();
Iterator it = c.iterator();
for (; it.hasNext();) {
System.out.println(it.next());
}
} ...
最近在搞解压缩的问题,发现了用java.util.zip 是可以解压压缩包,但是解压含有中文的压缩包就会报错。所以改用ant.jar来解决这个问题,代码如下:
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Enumeration;
import org.apache.tools.zip.ZipFi ...
1 属性
1.11 autoOpen ,这个属性为true的时候dialog被调用的时候自动打开dialog窗口。当属性为false的时候,一开始隐藏窗口,知道.dialog("open")的时候才弹出dialog窗口。默认为:true。
1.12 初始化例:请注意,$('.selector')是dialog 的类名,在本例中.selector=#dialoag,以后不再说明。
$('.selector').dialog({ autoOpen: false });
1.13 初始化后,得到和设置此属性例:
//获得
var autoOpen = $('.se ...
update mds_jg_info a
set video='是'
where exists(select * from mds_jg_video b where a.pkid=b.dwid)