- 浏览: 23937 次
- 性别:
- 来自: 上海
最新评论
-
wangyazhen:
安装unlock,就可以非常方便地解决问题!
删除U盘时提示无法停止’通用卷’设备的解决方法
文章列表
[color=green]SELECT * FROM (SELECT s.*,ROWNUM rn FROM(SELECT * FROM SZZP_TEST ) s WHERE ROWNUM<100) WHERE rn>50;[/color]
- 2009-07-28 10:09
- 浏览 1219
- 评论(0)
原文:
http://ensoft.yo2.cn/tip/when-prompted-to-remove-u-disk-can-not-stop-common-roll-equipment-solution.html
第一种方法(这也是我建议大家最常用的方法):
往往我们在把U盘的文件或者数据取出来的时候,都是用的“复制”“粘贴”方式,而如果 ...
- 2008-10-08 20:31
- 浏览 1126
- 评论(1)
import java.text.Collator;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.Iterator;
public class ChineseCharacterSortDemo {
public static void main(String args[]) {
ArrayList list = new ArrayList();
list.add(new Country(86, &qu ...
- 2008-09-12 11:12
- 浏览 2464
- 评论(0)
添加ess防火墙规则:
个人防火墙
规则和区域
区域和规则编辑器
添加2条规则:
允许javaw.exe通信(入站、出站)
- 2008-09-10 20:12
- 浏览 1670
- 评论(0)
出现missing parameter or missing bean converters 错误
有可能是由于方法调用的参数顺序引起的
数组型参数放最后,简单参数放前面
如(String aaa,String bbb,...String[] aaa,String[] bbb)
不能简单参数加在数组参数的后面或中间
- 2008-07-15 18:06
- 浏览 1228
- 评论(0)
http://getfirebug.com/console.html
http://getfirebug.com/commandline.html
- 2008-04-14 16:33
- 浏览 857
- 评论(0)
在eclipse启动路劲里加上一下命令行
-nl "en_US"
- 2008-04-10 12:21
- 浏览 910
- 评论(0)
http://www.gridshore.nl/blog/index.php?/archives/52-Creating-an-autocomplete-with-Spring-and-DWR.html
- 2008-04-08 09:05
- 浏览 823
- 评论(0)
[color=olive]
[size=medium]replace()
The replace() method returns the string that results when you replace text matching its first argument
(a regular expression) with the text of the second argument (a string).
If the g (global) flag is not set in the regular expression declaration, this me ...
- 2008-04-07 17:43
- 浏览 1009
- 评论(0)
http://fineboy.cnblogs.com/archive/2005/09/08/232410.html
- 2008-04-05 20:54
- 浏览 815
- 评论(0)
发表人:jordan1226 | 发表时间: 2007年十月30日, 14:33
Oracle 8 和Oracle 9i中缺乏灵活性的SQL 正则表达式最终在Oracle 10g中得到了解决。Oracle 数据库目前内建了符合POSIX 标准的正则表达式。
四个新的函数分别是:REGEXP_LIKE、REGEXP_INSTR、REGEXP_SUBSTR、和EGEXP_REPLACE。它们在用法上与Oracle SQL 函数LIKE、INSTR、SUBSTR 和REPLACE 用法,但是它们使用POSIX 正则表达式代替了老的百分号(%)和通配符(_)字符。
POSIX 正则表达式由标准的元 ...
- 2008-04-05 17:33
- 浏览 2550
- 评论(0)
// 对Date的扩展,将 Date 转化为指定格式的String
// 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符,
// 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字)
// 例子:
// (new Date()).Format("yyyy-MM-dd hh:mm:ss.S") ==> 2006-07-02 08:09:04.423
// (new Date()).Format("yyyy-M-d h:m:s.S") = ...
- 2008-04-05 14:15
- 浏览 1056
- 评论(0)
key configuration ->Tools/Code Assistance
改成 Alt+/
- 2008-04-05 13:51
- 浏览 3100
- 评论(0)