Eclipse的控制台console有时候经常的跳出来,非常的烦人!让它不经常的调出来,可以按下面的操作去掉它:windows -> preferences -> run/debug -> console去掉"Show when program writest to standard out"和"S...
分类:
系统相关 时间:
2014-07-23 11:48:36
阅读次数:
257
public Sheet filterSheet(Sheet sheetToFilter){ if(sheetToFilter == null){ System.out.println("sheetToFilter is null!"); return null; } int last...
分类:
其他好文 时间:
2014-07-23 11:32:16
阅读次数:
223
out修饰符定义作用使用注意总结定义out意为output,所以被out修饰的参数叫做输出参数.通过使用out修饰的参数,方法可以返回对应参数的值作用先看一个例子定义变量:1 int x=1,y=2,sum;//定义x,y,sum三个整型变量定义方法:1 static void Add(int x,...
分类:
其他好文 时间:
2014-07-22 23:41:17
阅读次数:
412
不论鼠标指针穿过被选元素或其子元素,都会触发mouseover事件。对应mouseout只有在鼠标指针穿过被选元素时,才会触发mouseenter事件。对应mouseleave对于mouseover和mouseenter两个事件,最大的区别就是mouseenter是不冒泡的事件。对于mouseove...
分类:
其他好文 时间:
2014-07-22 23:26:07
阅读次数:
235
#include #include void main(){ int x,i; char str[100]; //gets(st1); printf("Please input a string to find out whether the string is palind...
分类:
其他好文 时间:
2014-07-22 23:04:32
阅读次数:
240
出错的原因是adb的port被其它程序的进程占据了,所以要做的就是找到并kill该进程。步骤:、1、在cmd中运行adb nodaemon server,查看adb的port号是多少,普通情况下是5037(why?我也不太懂,或许软件使用的port号是固定的)2、再运行netstat -ano | ...
分类:
数据库 时间:
2014-07-22 22:48:32
阅读次数:
248
Thread visitBaiduThread = new Thread(new VisitWebRunnable()); visitBaiduThread.start(); try { visitBaiduThread.join(); System.out.println("xianch...
分类:
移动开发 时间:
2014-07-22 22:39:12
阅读次数:
245
Methods of adding more resources for a particular application fall into two broad categories: horizontal and vertical scaling.[5]
To scale horizontally (or scale out) means to add more nodes to a s...
分类:
其他好文 时间:
2014-07-22 22:33:55
阅读次数:
397
//组合签名
$a=time();
$b=substr($a,1);
//生成随机订单号
$orderid=$b.mt_rand(10000,99999);
//合作身份者id,以2088开头的16位纯数字
$mygoods[‘partner‘]="2088011744308664";
//商家账号
$mygoods[‘seller‘]="zfb@sinoglobal.com.cn";
//订单号
$mygoods[‘out_trade_no‘]..
分类:
Web程序 时间:
2014-07-22 18:27:52
阅读次数:
279
//组合签名
$a=time();
$b=substr($a,1);
//生成随机订单号
$orderid=$b.mt_rand(10000,99999);
//合作身份者id,以2088开头的16位纯数字
$mygoods[‘partner‘]="2088011744308664";
//商家账号
$mygoods[‘seller‘]="zfb@sinoglobal.com.cn";
//订单号
$mygoods[‘out_trade_no‘]..
分类:
Web程序 时间:
2014-07-22 18:27:02
阅读次数:
333