`
文章列表
var a="2010/09/03";   var b=a.replace(new RegExp("/","gm"),"");//把a中的所有/都去掉 alert(b);     demo 见:http://jsfiddle.net/hYZUc/
package com.snda.youni.monitor.console.utils; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.springframework.beans.facto ...
package com.snda.youni.monitor.console.utils; import java.sql.Timestamp; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public class DateTools { /** * 把时间戳转化为 yyyy-MM-dd HH:mm:ss 格式 * * @param timeStamp * ...
$(".dayCheckbox:checkbox:checked").length; dayCheckbox  为checkbox 的 class
在js中做定时操作一般会用到 settimeout,但是如果想要终止setTimeout的话,就需要用到方法 clearTimeout();   var t; function print(){ alert("ok"); t=setTimeout("print()",3000);//setTimeout会有一个返回值 } function stop(){ t && clearTimeout(t);//如果t 不是 null,NaN 就调用clearTime(t),则会终止 }  && ...
【1】js毫秒时间转换成日期时间   var oldTime = (new Date("2012/12/25 20:11:11")).getTime(); //得到毫秒数     //不是上面格式的时间需要转换      //starttime ='2012-12-25 20:17:24';     starttime = starttime.replace(new RegExp("-","gm"),"/");     var starttimeHaoMiao = (new Date(startt ...
官网demo地址:http://www.jqchart.com/jquery/chart   由于demo不能完全满足我的需求,所以做了以下改动。 需求1:需要数据曲线从左到右实时的更新         在jqchart 初始化的时候,给series 中需要变化的曲线的data用一个数组来代替,上代码:   series:[ { title: '动态数据', type: 'line', ...
有时候我们得到一个不可更改的接口,但是要在接口的某个方法执行前或者执行后操作某些东西,就可以用代理模式,代理模式主要分两种,静态代理和动态代理。 静态代理 就是在 代理类中 搞一个被代理的实例,然后去调用真实类的方法: package proxy; public interface SellInterface { public void sell(); } class RedWineFactory implements SellInterface { @Override public void sell() { System.out.println(& ...
所谓回调,就是用户程序A要调用接口B中的方法,而接口B的方法的具体实现却是在A中实现的   我们先看下面的例子,然后再来解释这句话。 1.先定义一个接口,规定回答问题的条件是打我手机 public interface CallBack { //通过手机回答 void CallIphone();} 2.调用者(我): public class Me { public void askQuestion(){ System.out.println("拨打固话问1+1=?");
import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; public class TestThreadPool { private static int produceTaskSleepTime = 20; public static void main(String[] args) { int threadNum = 10; int taskNum = 100; ExecutorService threadPool = Ex ...
1、让 一个命令在后台执行 nohup java -jar hudson.jar &  2、通过ssh 登录远程机器 ssh -p 8080 root@192.168.1.235  3、从本地linux传文件到远程linux scp -P 8080 a.txt root@192.168.1.23:/root/svn  4、拷贝文件 cp a.txt /data1/targetdir  5、 拷贝文件 ...
需要解析如下的XML: <iq id="EHS8g-5" to="123" from="456" type="set"> <command xmlns="http://jabber.org/protocol/commands" node="send-sms" action="execute"> <property name="message"> <message id=&q ...
http://blog.csdn.net/fufengrui/article/details/7107924
自从HttpClient升级到HttpComponent后,HttpMethod提供的方法releaseConnection()就被丢弃了。转而改成另外相对麻烦点的维护一个连接池的处理方式。 When you replace Apache Commons HttpClient with Apache HttpComponents.if you haven’t release connection in you ...
  HttpClient client = new HttpClient(); PostMethod post = new PostMethod(url); byte[] b =json.toString().getBytes(); RequestEntity entity = new ByteArrayRequestEntity(b); post.setRequestEntity(entity); post.setRequestHeader("Content-Type", "application/octet-stream&quo ...
Global site tag (gtag.js) - Google Analytics