本月博客排行
-
第1名
duanfei -
第2名
benladeng5225 -
第3名
steven789654 - wddpwzzhao123
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
wy_19921005 - benladeng5225
- kaizi1992
- tanling8334
- vipbooks
- sam123456gz
- arpenker
- zysnba
- fantaxy025025
- wallimn
- e_e
- ganxueyun
- jh108020
- Xeden
- xyuma
- wangchen.ily
- zhanjia
- johnsmith9th
- zxq_2017
- forestqqqq
- jbosscn
- daizj
- xiangjie88
- xpenxpen
- 喧嚣求静
- lchb139128
- kristy_yy
- javashop
- lzyfn123
- sunj
- yeluowuhen
- ajinn
- lerf
- lemonhandsome
- chenqisdfx
- xiaoxinye
- flashsing123
- lyndon.lin
- bosschen
- zhangjijun
- sunnylocus
- lyj86
- paulwong
- sgqt
- hudiemeng870329
- duanfei
- mft8899
- java_doom
最新文章列表
将一个文件由gbk 转成 utf-8
public void transform(String fileName) {
try {
String line_separator = System.getProperty("line.separator");
FileInputStream fis;
fis = new FileInputStream(fileName);
Stri ...
Subversion安装、配置与使用
此文章只代表作者一段时间的看法和观点。此文是作者原创,如第三方用于商业用途需经本人同意,转载、引用本文请注意出处。
一.为什么要进行代码控制
在软件开发的过程中,经常因为程序代码版本的不统一而导致重新开发,或者在多人开发的项目中,多人共同修改了同一个公共代码文件而导致的相互复盖的问题,诸如此类的问题还有很多,下面我们就来举一个例子。
比如说UserA和UserB各自为自己的需求需要在公 ...
hibernate 常见的几个问题(二)
org.hibernate.TransientObjectException: entity.User
exception javax.servlet.ServletException: org.springframework.dao.InvalidDataAccessApiUsageException: entity.User; nested exception is org.hib ...
介绍几种常用的注册window服务工具
介绍五种方式
一,微软官方工具包
.1. 下载nginx windows版本
http://www.nginx.org 2. 下载微软的2个工具: instsrv.exe、srvany.exe 去微软网站下载安装Windows Server 2003 Resource Kit Tools(rktools.exe),它包括标题提及的所有必要的工具,下载完安装好。 3. 运行命令 ...
java.lang.NoSuchMethodError: org.hibernate.event.PreInsertEvent.getSource() 解决办法
java.lang.NoSuchMethodError: org.hibernate.event.PreInsertEvent.getSource()Lorg/hibernate/event/EventSource;
org.hibernate.validator.event.ValidateEventListener.onPreInsert(ValidateEventListener.ja ...
webservice生成客户端的方法
目前为止webservice生成客户端方法比较多,我本身使用的主要有三种方式:
(1)使用eclipse自带。
file->new->other->webservices->web service client
(2)使用axis插件
file->new->other->axis2wizards->axis2 code generator
( ...
android应用客户端自动升级
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import org.apache.http.HttpEntity;
import org.apache.http.HttpRespo ...
java httpClient4.0 通过代理认证访问网站
httpClient4.0 通过代理认证访问网站
import java.io.IOException;
import org.apache.http.HttpEntity;
import org.apache.http.HttpHost;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
...