07 2015 档案
摘要:http://www.cnblogs.com/qq809102690/p/4009197.html当前时间的时间戳 1. new Date().getTime() 2. System.currentTimeMillis();时间转换为时间戳: SimpleDateFormat for...
阅读全文
摘要:java的webservice开发步骤CXF的步骤: 1.导入jar:1. commons-logging-1.1.1.jar 2. geronimo-activation_1.1_spec-1.0.2.jar (or Sun's Activation jar) 3. geroni...
阅读全文
摘要:1.Java开发生成UUID或GUID方法 // 36位的,带中划线 java.util.UUID.randomUUID().toString(); // 32位的,去掉中划线 java.util.UUID.randomUUID().toString().replaceAll("-", ""); 2
阅读全文