`
duanwenping520
  • 浏览: 4600 次
  • 性别: Icon_minigender_1
  • 来自: 上海
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表

test

some test infomation
DB> ConnectionPool.java package com.citi.isg.smc.mw.delta.db; import java.sql.Connection; import java.sql.SQLException; import java.util.ArrayList; import java.util.Collection; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.BlockingQueue; import oracle.jdbc.pool.Orac ...
nohup 命令   用途:不挂断地运行命令。   语法:nohup Command [ Arg ... ] [ & ]     nohup mv /archive0/archive1/data/output/Univex/US_EOD/2011* . &   描述:nohup 命令运行由 Command 参数和任何相关的 Arg 参数指定的命令,忽略所有挂断(SIGHUP)信号。在注销后使用 nohup 命令运行后台中的程序。要运行后台中的 nohup 命令,添加 & ( 表示“and”的符号)到命令的尾部。   无论是否将 nohup 命令的输出重定向到终端,输 ...
function byte_length(s){ var sum = 0; for(var i=0;i<s.length;i++){ if(s.charCodeAt(i)<=0x7F){ sum++; }else if(s.charCodeAt(i)<=0x7FF){ sum += 2; }else if(s.charCodeAt(i)<=0xFFFF){ sum += 3; }else if(s.charCodeAt(i)<=0x1FFFFF){ sum += 4; }else if(s.charCodeAt(i)& ...

下拉框

    博客分类:
  • html
$("#id").attr("value","");//清空选中项。 var ids='1,3,6';//设置选中框ID。 var id_Ojbect=(ids).split(",");//分割为Ojbect数组。 var count=$("#id option").length;//获取下拉框的长度。 for(var c=0;c<id_Ojbect.length;c++){ for(var c_i=0;c_i<count;c_i++) { if($("#id& ...
package com.test.timer; import java.util.HashMap; import java.util.Map; import javax.crypto.Cipher; import javax.crypto.SecretKey; public class SecretKeyTest { private static String pattern =   "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";     private static String p ...

html

    博客分类:
  • html
function flush() { opener.parent.frames['topFrame'].document.forms['flush'].submit(); window.close(); }
public List getListPage(Class c, String sql, Long pageIndex, int pageRecordCount, Object[] paramsValue) { List list = new ArrayList(); // 创建 集合 com.dwp.util.DataSource ds = new com.dwp.util.DataSource(); // 创建 数据源 Connection conn = ds.getConnection(); // 获得数据库联接 PreparedStatement pstmt = n ...
Global site tag (gtag.js) - Google Analytics