自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (1)
  • 收藏
  • 关注

原创 java反射获取当前对象属性的值

代码如下: /** * 获取当前对象【fieldName】属性的值 * @param obj 对象 * @param fieldName 属性名 * @return * @throws Exception */ public static Object getValue(Object obj, String fieldNam

2017-08-30 14:15:22 3376 1

原创 java String字符串首字母转大写

代码如下: /** * 将字符串首字母转大写 * @param str * @return */ public static String upperCase(String str) { if ((str == null) || (str.length() == 0)) return str; char[] ch

2017-08-30 13:46:08 2155 1

原创 Previous operation has not finished; run 'cleanup' if it was interrupted

操作SVN报下面错误问题:Previous operation has not finished; run ‘cleanup’ if it was interrupted 可按照如下步骤解决: 下载sqlite3.exe 搜索项目的wc.db这样一个文件(这个文件一般是隐藏的) 把下载好的sqlite3.exe放到wc.db同级目录处 打开cmd,到wc.db所在的这个路径,然后执行sqlite3

2017-08-30 10:54:43 231

sqlite3.exe

我用来解决SVN报Previous operation has not finished; run 'cleanup' if it was interrupted错误问题

2017-08-30

空空如也

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

TA关注的人

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