上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要: 对账流水 drop sequence COMMON_SEQ;-- Create sequence create sequence COMMON_SEQminvalue 1maxvalue 999999999start with 1increment by 1cache 20cycle; 我们的序列的 阅读全文
posted @ 2017-03-04 12:57 Kevin_Zhou_9 阅读(2264) 评论(0) 推荐(0) 编辑
摘要: 环境变量配置以下两个变量: LANG=zh_CN.GBK NLS_LANG=SIMPLIFIED CHINESE_CHINA.ZHS16GBK 阅读全文
posted @ 2017-03-04 12:50 Kevin_Zhou_9 阅读(227) 评论(0) 推荐(0) 编辑
摘要: // ShuffleTest.java import java.util.*; public class ShuffleTest { public static void main(String[] args) { List<Integer> list = new ArrayList<Integer 阅读全文
posted @ 2016-11-10 15:15 Kevin_Zhou_9 阅读(300) 评论(0) 推荐(0) 编辑
摘要: /** * 版本信息 * * @类名 :Meichat_version * @作者 :kevin * @创建时间 :2016-10-2下午8:25:13 */public class Meichat_version extends BasicServlet { private static fina 阅读全文
posted @ 2016-11-02 21:38 Kevin_Zhou_9 阅读(399) 评论(0) 推荐(0) 编辑
摘要: getData("name"); //接收url传送参数objfunction getData(data){ //console.log("URL "+window.location.search); var reg = new RegExp("(^|&)"+ data +"=([^&]*)(&|$ 阅读全文
posted @ 2016-11-02 15:55 Kevin_Zhou_9 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 身份证生成器: http://www.shurufa8.cn/shenfenzheng.html,学习使用 阅读全文
posted @ 2016-10-27 16:00 Kevin_Zhou_9 阅读(48) 评论(0) 推荐(0) 编辑
摘要: var str="1,1,2,2,3,“; str = str.substr(0,str.length-1); console 阅读全文
posted @ 2016-10-20 20:49 Kevin_Zhou_9 阅读(2785) 评论(2) 推荐(0) 编辑
摘要: Date now = new Date(); SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");//可以方便地修改日期格式 String stroldnow = dateFormat.format( n 阅读全文
posted @ 2016-10-14 10:52 Kevin_Zhou_9 阅读(2699) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-09-07 19:16 Kevin_Zhou_9 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 我们在做web开发是,经常都要在eclipse中搭建web服务器,并将开发中的web项目部署到web服务器进行调试,在此,我选择的是tomcat服务器。之前部署web项目到tomcat进行启动调试都很正常,今天突然出现无法启动情况,启动过程报如下错误: java.lang.ClassNotFound 阅读全文
posted @ 2016-09-01 21:35 Kevin_Zhou_9 阅读(1119) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页