2015年4月16日

java 二进制 位运算符

摘要: 位运算符 & | ~ ^& : 对两个二进制数按位做与运算,即 1 & 0 = 0; 1 & 1 = 1; 0 & 0 = 0;| : 对两个二进制数按位做或运算,即 1 & 0 = 1; 1 & 1 = 1; 0 & 0 = 0;~ : 对一个二进制数按位取反,即 ~1 = 0; ~0 = 1;^... 阅读全文

posted @ 2015-04-16 19:05 Erbin 阅读(544) 评论(0) 推荐(0) 编辑

Servlet init

摘要: 我们从常用的HttpServlet来看。HttpServletextends: GenericServletAll Implemented Interfaces: java.io.Serializable, Servlet, ServletConfig接口Servlet中定义了init(Servle... 阅读全文

posted @ 2015-04-16 13:17 Erbin 阅读(301) 评论(0) 推荐(0) 编辑

2015年4月15日

.jardesc文件

摘要: 第一次导出jar文件的时候可以选择记录配置到一个这样的文件中;下次导出的时候,点这个文件->右键->创建jar(或双击),就可以重新生成jar文件了 阅读全文

posted @ 2015-04-15 11:21 Erbin 阅读(606) 评论(0) 推荐(0) 编辑

2015年4月13日

job.setOutputKeyClass(IntWritable.class) job.setOutputValueClass(Text.class);

摘要: //mapreduce编程中的这两行代码,设置的是map的输出格式job.setOutputKeyClass(IntWritable.class);job.setOutputValueClass(Text.class); 阅读全文

posted @ 2015-04-13 18:25 Erbin 阅读(598) 评论(0) 推荐(0) 编辑

2015年4月10日

java 发送 http请求——HttpClient

摘要: 使用HttpClient来发送Http请求引入两个包:[1]org.apache.httpcomponents.httpclient_x.x.x.jar [2]org.apache.httpcomponents.httpcore_x.x.x.jar下载链接:Apache HttpComponents... 阅读全文

posted @ 2015-04-10 15:59 Erbin 阅读(923) 评论(0) 推荐(0) 编辑

2015年4月7日

封装java发送邮件

摘要: 刚刚封装了一个jar包,用来简便发送邮件的过程,需要调用javax.mail.jar百度网盘:study.java.mail-1.0.0.jar(自己封装的) 源代码 mail.jar(需要调用)// HelloBB.javapackage hello;import study.java.m... 阅读全文

posted @ 2015-04-07 13:42 Erbin 阅读(297) 评论(0) 推荐(0) 编辑

2015年4月3日

Mybatis使用log4j添加日志

摘要: Thxhttp://ppyymm000.blog.163.com/blog/static/2834658420121141142231/http://blog.163.com/ng_0125@126/blog/static/170162360201392105823927/-------------... 阅读全文

posted @ 2015-04-03 17:16 Erbin 阅读(1230) 评论(0) 推荐(0) 编辑

【转发】VirtualBox错误 Unable to load R3 module 1790 解决方法

摘要: 转发来源:版权所有,转载请注明出处:http://www.myxzy.com/post-438.html星知苑 电脑技术、软件教程、代码资料、网站技术、原创文章 —— 星之宇个人博客 VirtualBox错误 Unable to load R3 module 解决方法Thx... 阅读全文

posted @ 2015-04-03 11:05 Erbin 阅读(171) 评论(0) 推荐(0) 编辑

2015年3月27日

一些jar命令

摘要: 没怎么用过,先mark一下(1)创建jar包 jar cf hello.jar hello 利用test目录生成hello.jar包,如hello.jar存在,则覆盖(2)创建并显示打包过程 jar cvf hello.jar hello 利用hello目录创建hello.j... 阅读全文

posted @ 2015-03-27 18:30 Erbin 阅读(132) 评论(0) 推荐(0) 编辑

js 发送ajax请求

摘要: 单纯js发送ajax请求,用jquery等js的库的话就没有这么麻烦了 阅读全文

posted @ 2015-03-27 18:28 Erbin 阅读(713) 评论(0) 推荐(0) 编辑

导航