自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

转载 utf-8 特殊字符过滤

/**     * 去除字符串特殊字符     * */    public static String stripNonCharCodepoints(String input) {                if (input != null) {            input = input.replace("", "");        }     

2014-09-17 16:46:31 1472

原创 MD5加密应用

public class MD5Util {    public final static String MD5(String s) {        char hexDigits[]={'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};               try {           

2014-09-17 16:43:10 449

原创 sql语句参数拼接Bug

/*** 根据keyWords和projectId和keyTerm获取频道id* @param projectId* @param keyWords* @param keyTerm* @return*/@SuppressWarnings("unchecked")public long getChannelIdByKeywords(Long projectId ,St

2013-12-04 16:54:13 542

转载 Sping的三种注入方式

spring的三种注入方式:接口注入(不推荐) getter,setter方式注入(比较常用) 构造器注入(死的应用)关于getter和setter方式的注入: autowire="defualt"  autowire=“byName”  autowire="bytype"例如:有如下两个类需要注入 1 package org.jia; 2 

2013-12-02 12:04:28 512

空空如也

空空如也

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

TA关注的人

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