`
文章列表
import java.util.Timer; import java.util.TimerTask; public class Show { public static void main(String[] args) { Timer timer = new Timer(); timer.schedule(new AnyTimerTask("1"),1000); timer.schedule(new AnyTimerTask("2"),1000); timer.schedule(new AnyTimerTask( ...
Jython调用print方法,报错如下LookupError: unknown encoding 'ms936' 修改方法:chcp 437   直接修改registry配置文件也可以 python.console.encoding = cp850
echo "hello,this is the content of mail.welcome to hello.world" | mail -s "Hello from hello.world by pipe" hello@world.com  
<% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <head> <base href="<%=basePath%>"> </head>   在配置nginx和tomcat时,发 ...
wget http://mirror.centos.org/centos/5/os/x86_64/CentOS/libpcap-0.9.4-15.el5.x86_64.rpm rpm --force -ivh libpcap-0.9.4-15.el5.x86_64.rpm wget -c http://apt.sw.be/redhat/el5/en/x86_64/rpmforge/RPMS/dsniff-2.4-0.1.b1.el5.rf.x86_64.rpm rpm -Uvh dsniff-2.4-0.1.b1.el5.rf.x86_64.rpm   因为6.1系统自带的libp ...
CScript 错误: 无法找到脚本“...InstallWizardForVS2010.js”的脚本引擎“JScript”。 ------解决方案-------------------------------------------------------- 可能是你的脚本库被反注册了,试试: cmd cd /d c:\windows\system32 regsvr32 jscript.dll regsvr32 vbscript.dll 这样应该就可以执行脚本了。  在windows 7 64bit系统上安装cocos2dx的vs的template时报的错误 ...
可继承单例的实现,在java中只能使用登记式单例模式,但是这样子类就必须公开构造方法。又违背了单例的原则。 nnd。贴个cpp和c#的可继承单例类吧。java。。。。。。。。。。。。。。。template <class T> class Singleton { public: ~Singleton(void) {}; static T& GetService(void) {return *Instance;} protected: Singleton<T>(void) {}; static T* Instanc ...
Following these steps: 1) Install Eclipse Indigo JEE 2) Install m2eclipse via update site http://download.eclipse.org/technology/m2e/releases 3) Start "Check out Maven Projects from SCM" wizards and click on "Find more SCM connectors in the m2e Marketplace" 4) select m2e-subv ...
JClass temp = new JCodeModel().ref(Class.class).narrow(cm.ref(Serializable.class).wildcard()); 生成内容: Class<? extends Serializable> JClass str = cm.ref("org.isunday.tools.cg.codemodel.core.Generator"); JClass rlist = cm.ref(List.class).narrow(str); 生成内容: List<Gen ...
/** * @param strs * 待转化字符串 * @return * @author estone * @description 下划线格式字符串转换成驼峰格式字符串 * eg: player_id -> playerId;<br> * player_name -> playerName; */ public static String underScore2CamelCase(String strs) { String[] elems = ...
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <% Response.CodePage=65001%> <% Response.Charset="UTF-8" %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Asp Http Post Req ...
// 这个是一般对象创建方法 Class.forName("author.estone.java.SomeClass").newInstance(); 这种创建方式的前提是author.estone.java.SomeClass的构造方法必须要 有一个SomeClass()的构造方法。如果带有参数的构造方法使用上面的方法即 会报错。 假设SomeClass的构造方法如下: public SomeClass(String className); 使用Construct创建该对象实例的代码片段如下: SomeClass.class.getConstru ...
  int seconds = 5; long t = System.currentTimeMillis() + seconds * 1000; while (System.currentTimeMillis() < t) ;   特点:耗性能,不精确,适合在测试中用。拿着玩可以,别当真。 主要是受cpu的处理速度的影响。
加入文字说明。
啥也不说看代码   List<String> tt = new ArrayList<String>(); tt.add(0,"-1"); tt.add(1,"-1"); tt.add(2,"-1"); tt.add(3,"-1"); tt.add(4,"-1"); tt.add(0,"100");  输出[100,-1,- ...
Global site tag (gtag.js) - Google Analytics