上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页
摘要: 如果添加了.gitignore,未生效,原因是.gitignore只能忽略那些原来没有被track的文件,如果某些文件已经被纳入了版本管理中,则修改.gitignore是无效的。那么解决方法就是先把本地缓存删除(改变成未track状态),然后再提交: git rm -r --cached . git add . git commit -m 'update .gitignore' 阅读全文
posted @ 2017-10-14 12:16 cnkker.com 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 发布的jar包,运行后发现报错 Java Algorithm HmacSHA256 not available 百般思索,发现原生JAR包问题 解决办法: Copy sunjce_provider.jar from $JAVA_HOME/jre/lib/ext to the lib directory of the container. 把 jre目录下的 sunjce_provider.jar jar包,复制到你的发布JAR文件目录,既可以解决问题! 阅读全文
posted @ 2017-09-07 10:58 cnkker.com 阅读(6841) 评论(1) 推荐(0) 编辑
摘要: Using native GDI for text rendering in C# Aug12 by Arthur To complete my previous post on text rendering in .NET I will present here the pitfalls I en 阅读全文
posted @ 2016-11-18 14:34 cnkker.com 阅读(465) 评论(0) 推荐(0) 编辑
摘要: 问题描述:Eclipse调试JAX-RS服务没问题,但是在发布服务端时候抛出异常 java.lang.AbstractMethodError: javax.ws.rs.core.UriBuilder.uri(Ljava/lang/String;)Ljavax/ws/rs/core/UriBuilde 阅读全文
posted @ 2016-02-26 14:05 cnkker.com 阅读(670) 评论(0) 推荐(0) 编辑
摘要: 1、最近开发一个项目,用SQLite Expert Personal打开数据库如下图,title会产生乱码,问题。2、由于SQL lite默认是存储UTF-8格式,后来更改数据库编码类型为ANSI,依据操作系统,本地ANSI为GB2312格式,查看发现编码格式正常。3、用Android程序读取,采用... 阅读全文
posted @ 2016-01-06 22:25 cnkker.com 阅读(1376) 评论(0) 推荐(0) 编辑
摘要: 额定能量不得超过160Wh, 等同是多少mAh电池容量?行动电源容量标示, 正确应该是用Whr(Wh)瓦特小时来标示, 不过坊间标榜行动电源的容量通常是用xx000mAhWHr瓦特小时, 即是行动电源可输出功率单位, P(WHr)=V电压x I(电容量AH)。一般锂电池的电压是3.7V, 所以16... 阅读全文
posted @ 2016-01-06 10:43 cnkker.com 阅读(7072) 评论(0) 推荐(0) 编辑
摘要: Java的jLinqer包介绍 阅读全文
posted @ 2015-12-22 01:45 cnkker.com 阅读(628) 评论(0) 推荐(0) 编辑
摘要: C# Action委托 VS JAVA Action 接口函数 阅读全文
posted @ 2015-12-13 12:08 cnkker.com 阅读(1709) 评论(0) 推荐(0) 编辑
摘要: 参考文档:http://www.xiexianbin.cn/linux/2015/10/15/quickly-upgrade-centos6.5-kernel-from-2.6.32-to-3.10.90/kernel简介在yum的ELRepo源中,有mainline(3.13.1)、long-te... 阅读全文
posted @ 2015-10-17 14:34 cnkker.com 阅读(341) 评论(0) 推荐(0) 编辑
摘要: Solution to an annoying error message! You are getting 'Could not write to output file 'c:\Windows\Microsoft.NET\Framework\....' message? You are at the right place. 阅读全文
posted @ 2015-05-12 16:22 cnkker.com 阅读(441) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页