自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 资源 (2)
  • 收藏
  • 关注

原创 ArrayList

when I use ArrayList ,I found that I often meet the exception:java.lang.IndexOutOfBoundsException happenhow to avoid this exception, that when we loop the ArrayList or add elements in ArrayList, you ne

2016-08-25 11:12:44 192

转载 JPA study

http://www.objectdb.com/java/jpa/persistence/storehttp://www.objectdb.com/java/jpa/persistence/overviewhttp://www.thejavageek.com/2014/01/12/jpa-crud-example/JPA CRUD example:Create a JPA project.Cre

2016-07-22 19:49:22 251

转载 Java中getResourceAsStream的用法

首先,Java中的getResourceAsStream有以下几种: 1. Class.getResourceAsStream(String path) : path 不以’/’开头时默认是从此类所在的包下取资源,以’/’开头则是从ClassPath根下获取。其只是通过path构造一个绝对路径,最终还是由ClassLoader获取资源。Class.getClassLoader.getResou

2016-07-22 19:35:29 197

转载 Java序列化(Serializable)与反序列化

序列化是干什么的简单说就是为了保存在内存中的各种对象的状态(也就是实例变量,不是方法),并且可以把保存的对象状态再读出来。虽然你可以用你自己的各种各样的方法来保 存object states,但是Java给你提供一种应该比你自己好的保存对象状态的机制,那就是序列化。什么情况下需要序列化当你想把的内存中的对象状态保存到一个文件中或者数据库中时候; 当你想用套接字在网络上传送对象的时候; 当你想通过

2016-07-22 19:30:48 276

转载 Excel hander

For excel handle . we have two way to fix . one is use poi to handle the excel data . another way is use jXLS to handle the excel.http://fahdshariff.blogspot.hk/2014/06/parsing-excel-file-into-javabe

2016-07-22 12:28:09 350

转载 Loop map

package com.mkyong;import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.Map.Entry;public class LoopMap {public static void main(String[] args) { // initial

2016-07-22 09:51:04 380

原创 perl study

for https request, for perl, need do special handle.$ua->ssl_opts(‘verify_hostname’ => 0); #works or (to omit the ssl verify)$ENV{‘PERL_LWP_SSL_VERFIY_HOSTNAME’} = 0;and ISO8601 time format is 2016

2016-06-30 19:22:56 363

原创 CXF WebService

Maven: pom.xml org.apache.cxf cxf-rt-transports-http 2.7.3 org.apache.cxf cxf-rt-frontend-jaxws 2.7.3 the applicationContext.xml:

2016-06-23 22:05:41 203

转载 Hibernate annotation

@Entity 映射实体类 @Table 映射数据库表@Entity(name=”tableName”) 注解将一个类声明为一个实体bean。 name - 可选,对应数据库中的一个表。若表名与实体类名相同,则可以省略。@Table(name=”“,catalog=”“,schema=”“) - 可选,通常和@Entity 配合使用,只能标注在实 体的 class 定义处,表示实体对应的数

2016-06-22 22:46:58 157

转载 hibernate study

Hibernate是一种ORM(object relation mapping,对象关系映射)框架,所谓的对象关系映射,通俗的说,就是把JAVA对象保存到关系型数据库中。hibernate要做的事,就是让对象投影到关系数据库中,然后实施持久化。example:建立User类到数据库的映射 一个简单的类User: public class User{ private int id; priva

2016-06-22 21:35:09 166

原创 Unlock login keyring

desc: login mysql use work-bench ,meet the Enter password to unlock your login keyring.I google to find that this is a service, that you can search “password ..” you would find the password and Key,

2016-06-22 14:21:21 503

原创 Linux command

check memory : top free -m vmstat -s

2016-06-21 12:27:28 219

原创 how to open ubuntu port like 8443

Today I meet a problem that a project release in tomcat, and can not restart. only to find that need to opne 8443 port.here I use sudo ufw allow out 8443/tcp.netstat -asudo ufw allow 80/tcp sudo ufw a

2016-06-16 19:47:19 379

原创 mysql 小知识点

工作小常识MySql四舍五入 For example ,sql :select sum (userDefAttr9 ) from table.result : 3.27777777777777; expect : 3.28 way : round(X,D) FLOOR(X) 返回不大于X的最大整数值。向下取整 mysql> select FLOOR(1.23);

2016-06-15 18:12:55 249

原创 菜鸟笔记

java loc datetime ,timeZone,timeGMTjava date time conversion Markdown 是一种轻量级标记语言,它允许人们使用易读易写的纯文本格式编写文档,然后转换成格式丰富的HTML页面。 —— [ 维基百科 ]how to convert Date / StringString to DateSimpleDateFormat sdf

2016-06-12 22:23:20 186

Jfreechart学习资源

想用java展现表格数据吗,想用java展示图表吗,jfreechart是一个很好用的东西。

2014-01-07

jsp+servlet+strut

jsp+servlet用的是oracle,写的还蛮好的。代码很详细

2013-12-30

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除