摘要: 二进制数如果是八位的话前四位是高位,后四位是低位。正数的原码,反码,补码都是他本身。负数的原码是它本身,反码是除符号位(最高位,0表示正数,1表示负数)外,其他值全取反,补码是反码加1。以整形变量-13为例:原码 10000000 00000000 00000000 00001101反码 11111111 11111111 11111111 11110010补码 11111111 11111111 11111111 11110011 阅读全文
posted @ 2013-03-06 08:56 息搏 阅读(179) 评论(0) 推荐(0)
摘要: HSSF适用于导出excel 2003,最大容纳记录数65536条。XSSF适用于导出excel 2007,最大容纳记录数1048576条。导出数据量过大时就用SXSSF,一般一次导出的记录数超过5万条就可以考虑用这个了。基本操作都差不多的,也有些操作比如说设置注释,HSSF和XSSF的方式就不同,SXSSF还不能设置注释,反正我是没整出来。下面附上常见的颜色索引。 BLACK(8), WHITE(9), RED(10), BRIGHT_GREEN(11), BLUE(12), YELLOW(13), PINK(14), TURQUOISE(15), DARK_RED(16), GREEN(1 阅读全文
posted @ 2013-03-06 08:48 息搏 阅读(424) 评论(0) 推荐(0)
摘要: public static boolean sendTextMail(MailSender mailInfo) { // 判断是否需要身份认证 MyAuthenticator authenticator = null; Properties pro = mailInfo.getProperties(); if (mailInfo.isValidate()) { // 如果需要身份认证,则创建一个密码验证器 authenticator = new MyAuthenticator(mailI... 阅读全文
posted @ 2013-03-04 15:47 息搏 阅读(216) 评论(0) 推荐(0)
摘要: whatever 随便你show mecome on 得了吧nice try 好借口you have no idea 你根本不知道fair enough 好吧you will,my hands 你之所愿,我之所为you go too far 你做的太过分了piss off 滚开look at those cheekbones,I could cut myself slapping that face 瞧瞧这颧骨,我一巴掌扇过去都会割到手you lower the IQ of the whole street 你把整条街的智商水平都拉低了In a world of locked rooms,th 阅读全文
posted @ 2013-02-28 20:37 息搏 阅读(168) 评论(0) 推荐(0)
摘要: import java.awt.*;import java.awt.event.*;import java.util.Random;import javax.swing.*;/** * * @author http://javaflex.iteye.com/ * */public class GraphicsTest extends JFrame implements ActionListener { public static final double PI = Math.PI / 180; JPanel panel; JPanel pnlCtl; JButton ... 阅读全文
posted @ 2013-02-25 15:06 息搏 阅读(243) 评论(0) 推荐(0)
摘要: 五十而知天命,何用?时势造英雄,何为时势?天之道,不争而善胜,不言而善应,不召而自来,坦然而善谋。 阅读全文
posted @ 2013-02-22 14:20 息搏 阅读(140) 评论(0) 推荐(0)
摘要: 1.冒泡排序 1 3 5 7 9 2 4 6 8i=0 1 3 5 7 2 4 6 8 9i=1 1 3 5 7 2 4 6 8 9i=2 1 3 5 2 4 6 7 8 9i=3 1 3 5 2 4 6 7 8 9i=4 1 3 2 4 5 6 7 8 9i=5 1 3 2 4 5 6 7 8 9i=6 1 2 3 4 5 6 7 8 9i=7 1 2 3 4 5 6 7 8 9从i=0开始,两两比较直至i=array.length-1-i。2.选择排序 1 3 5 7 9 2 4 6 8i=0 1 3 5 7 9 2 4 6 8i=1 1 2 5 7 9 3 4 ... 阅读全文
posted @ 2013-02-20 10:19 息搏 阅读(129) 评论(0) 推荐(0)