public static String md5(String src){ try { StringBuffer buffer = new StringBuffer(); char[] chars = {'0','1','2','3','4'...
分类:
其他好文 时间:
2014-07-16 23:24:53
阅读次数:
192
1,需要引用命名空间using System.IO.Compression;2,//压缩byte数组方法private byte[] ComPress(byte[] data) { try { MemoryStr...
分类:
Web程序 时间:
2014-07-16 23:17:08
阅读次数:
333
def check_fmd_service(): try: output = subprocess.check_output('svcs -H -o state fmd',shell=True) state = output.decode('UTF-8').stri...
分类:
Web程序 时间:
2014-07-10 13:30:04
阅读次数:
246
我们经常需要从HttpServletRequest对象获取POST请求的数据,下面给出简练的代码共大家参考 StringBuffer jb = new StringBuffer(); String line = null; try { BufferedReader reader = req...
分类:
其他好文 时间:
2014-07-10 13:20:13
阅读次数:
920
对于一些代码,可能会希望无论try块中的异常是否抛出,它们都能得到执行。这通常适用于内存回收之外的情况。为了达到这样的效果,可以在异常处理程序后面加上finally子句。如下: 1 try{ 2 3 //The guarded region: Dangerous activities 4 ...
分类:
编程语言 时间:
2014-06-28 10:14:22
阅读次数:
197
oracle的sdo_geometry中内置get_wkt和get_wkb两个方法。以数据库表geoms为例,此表中有id和geometry两列try { OracleConnection con = new OracleConnection(co...
分类:
数据库 时间:
2014-06-27 16:19:06
阅读次数:
902
折腾了半天12.04server版,遇到的问题,貌似难度比10.04大很多:首先是低版本的ultraISO不支持12.04映像刻录,只显示出EFI,所以只能下个高版本的9.5.5(UUI被证明是不可行的)其次是按照10.04来做的话,Help->F6根本没有地方输入installcdrom-detect/try-usb=true。(找了好..
分类:
其他好文 时间:
2014-06-27 06:34:35
阅读次数:
233
最近在项目过程中使用selenium 判断元素是否存在的时候 遇到一个很坑爹的问题, 用以下方法执行的时候每次都会等待很长一段时间,原因是因为对selenium实现方法了解不足导致一直找不到解决方法。 private boolean isElementPresent(By by) { try { d...
分类:
其他好文 时间:
2014-06-26 20:13:20
阅读次数:
215
You can try this to install 32 lib(not all in ia32-libs):apt-get install program:i386.Or if you want to install the whole ia32-lib instead, try the fo...
分类:
移动开发 时间:
2014-06-26 18:09:51
阅读次数:
256
这几天看结城浩的《java多线程设计模式》,跟着做一些习题,有几道题目很有意思,记录下自己的体会。 首先是题目(在原书212页,书尾有解答):public class Main { public static void main(String[] args) { try { ...
分类:
编程语言 时间:
2014-06-26 12:56:35
阅读次数:
263