摘要:
如果添加了.gitignore,未生效,原因是.gitignore只能忽略那些原来没有被track的文件,如果某些文件已经被纳入了版本管理中,则修改.gitignore是无效的。那么解决方法就是先把本地缓存删除(改变成未track状态),然后再提交:
git rm -r --cached .
git add .
git commit -m 'update .gitignore' 阅读全文
摘要:
发布的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文件目录,既可以解决问题! 阅读全文
摘要:
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 阅读全文
摘要:
问题描述:Eclipse调试JAX-RS服务没问题,但是在发布服务端时候抛出异常 java.lang.AbstractMethodError: javax.ws.rs.core.UriBuilder.uri(Ljava/lang/String;)Ljavax/ws/rs/core/UriBuilde 阅读全文
摘要:
1、最近开发一个项目,用SQLite Expert Personal打开数据库如下图,title会产生乱码,问题。2、由于SQL lite默认是存储UTF-8格式,后来更改数据库编码类型为ANSI,依据操作系统,本地ANSI为GB2312格式,查看发现编码格式正常。3、用Android程序读取,采用... 阅读全文
摘要:
额定能量不得超过160Wh, 等同是多少mAh电池容量?行动电源容量标示, 正确应该是用Whr(Wh)瓦特小时来标示, 不过坊间标榜行动电源的容量通常是用xx000mAhWHr瓦特小时, 即是行动电源可输出功率单位, P(WHr)=V电压x I(电容量AH)。一般锂电池的电压是3.7V, 所以16... 阅读全文
摘要:
Java的jLinqer包介绍 阅读全文
摘要:
C# Action委托 VS JAVA Action 接口函数 阅读全文
摘要:
参考文档: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... 阅读全文
摘要:
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. 阅读全文