`
文章列表
package com.snda.sysdev.virtualsys; /** * @author chengyongchun * @date 14-3-21 下午2:54 */ public class RetryTest { public static int retryCount = 3; public static void retry() throws Exception{ int tries = retryCount; while (true){ tries--; ...
package org.apache.http; public interface HttpStatus { // --- 1xx Informational --- /** <tt>100 Continue</tt> (HTTP/1.1 - RFC 2616) */ public static final int SC_CONTINUE = 100; /** <tt>101 Switching Protocols</tt> (HTTP/1.1 - RFC 2616)*/ publi ...
package com.simple.example; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * java正则工作中的使用 * ========================================== * ^A匹配以A开头 * $A匹配以A结尾 * \s?匹配0个或多个空格 * \S+表示至少一个字符 * \S{0,6}表示0到6个字符 * [0-9]*匹配0到9的数字(多个) * ()将括号里面的内容作为一个独立的单元,理解为一组,用 ...
这个实例是验证多线程下使用java.util.UUID生成UUID不会发生重复的(其实UUID发生重复的概率是很小很小的 )   import java.util.HashSet; import java.util.Set; import java.util.UUID; import java.util.concurrent.Callable; public class GenUUId implements Callable { //实现Callable接口 public String genUuid(){ String uuid = UUID.randomUU ...
要优化mysql首先要知道什么地方需要优化,然后才能针对具体问题进行优化?难道不是吗?什么分库分表,建立索引....摆脱不要那么官方好吗?   1.学会和培养使用mysql的查看命令的使用习惯 什么你忘记如何创建表的语句了?? mysql> ? table Many help items for your request exist. To make a more specific request, please type 'help <item>', where <item> is one of the following topics: ...
1.在本地创建一个maven工程(你可以使用maven命令,eclipse插件,idea等工具),如springPropertyPlaceHolderExample 2.cd springPropertyPlaceHolderExample 3.git init 4.git add . 5.git commit -m 'init' 6.在你的github上创建springPropertyPlaceHolderExample仓库。 7.执行 git remote add origin git@github.com:yongchun/springPropertyPlaceHolder ...
1.本篇不是什么? 不会告诉你应用系统为什么要引入日志框架? 不会告诉你系统中什么样的异常及错误信息应该记录日志? 不会告诉你怎么可以高效的记录准确(能清晰的反应系统异常或业务异常)的日志? 当然也不会告诉你记录日志的n最佳实践,这些会在后一篇文章中详细介绍的.....   2.java中主要的日志框架有哪些?  java.util.Logging(JUL) Java Logging API是sun公司于2002年5月正式发布的。它是自J2SE 1.4版本开始提供的一个新的应用程序接口。它能够很方便地控制和输出日志信息到文件,控制台或其它用户定义的地方,如数据库,电子 ...
  /** * Created by spring on 10/26/13. */ public class Test { public static void main(String args[]){ Integer i_128 = -128; Integer j_128 = -128; System.out.println(i_128==j_128); Integer i_129 = -129; Integer j_129 = -129; Sys ...
<<<<<<< HEAD sb.append("SELECT ID_, TIME_, USER_ID_, TASK_ID_, PROC_INST_ID_, FULL_MSG_") .append(" FROM ACT_HI_COMMENT WHERE TYPE_ = 'comment' AND "); ======= sb.append( "SELECT ID_, TIME_, USER_ID_, TASK_ID_, PROC_INST_ID_ ...
1.eclipse 背景色设置:   Window->Preferences->General->Editors->Text Editors->Backgroud colors   取消System default 设置成:RGB(204,232,207).     2.eclipse的package explore背景颜色设置   这个需要修改windows系统的窗口背景颜色,修改以后不仅仅影响eclipse,还包括其他应用程序。     设置方法如下:   >>在桌面点右键,依次选属性(properties)—外观(appear ...
IP转整数以及整数转IP,代码见
mavan编译时设置编码,配置见
错误信息: PANIC: Could not open: android  这个是因为没有配置android环境变量。 参考: 错误原因介绍:http://blog.csdn.net/langeldep/article/details/7187502 解决办法:http://askubuntu.com/questions/266758/how-to-set-up-environment-variable-properly
错误信息: Starting emulator for AVD 'android' Failed to start emulator: Cannot run program "/home/spring/soft/adt-bundle-linux/sdk//tools/emulator": error=2, No such file or directory  解决这个问题的办法是: If you're running a 64-bit system, you need to install ia32-libs sudo apt-get install ia32- ...
 Http的状态码以及根据这些状态码分成5种类型 statusCode/100   /* * Copyright 2002-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at ...
Global site tag (gtag.js) - Google Analytics