2017年10月20日

平均年龄

摘要: 阅读全文

posted @ 2017-10-20 11:39 jackyu126 阅读(108) 评论(0) 推荐(0) 编辑

对于employees表中,给出奇数行的first_name

摘要: 对于employees表中,给出奇数行的first_name CREATE TABLE `employees` (`emp_no` int(11) NOT NULL,`birth_date` date NOT NULL,`first_name` varchar(14) NOT NULL,`last_ 阅读全文

posted @ 2017-10-20 09:53 jackyu126 阅读(737) 评论(0) 推荐(0) 编辑

2017年10月11日

字符串中部分字符替换

摘要: package com.test.interfaces;/* * 请实现一个函数,将一个字符串中的空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。 */public class Cnblog06 { public static 阅读全文

posted @ 2017-10-11 22:25 jackyu126 阅读(2209) 评论(0) 推荐(0) 编辑

斐波那契数列

摘要: package com.test.interfaces;/* * 大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项。n<=39 */public class Cnblog05 { public static void main(String[] args) { for(i 阅读全文

posted @ 2017-10-11 17:08 jackyu126 阅读(163) 评论(0) 推荐(0) 编辑

2017年10月10日

单列模式--代码

摘要: package com.test.interfaces;public class Cnblog04 { //单列模式--懒汉 private static Cnblog04 instance; private Cnblog04(){}; public static Cnblog04 getInsta 阅读全文

posted @ 2017-10-10 16:43 jackyu126 阅读(260) 评论(0) 推荐(0) 编辑

selenium基础知识

摘要: lenium版本3.0 selenium2.0比较成熟,建议还是使用selenium2.0 1.firefox浏览器版本30-40,建议使用39 2.rf--关键字驱动(python自动化测试框架) webdriver API(selenium API) 项目一:页面加载拓扑图,网络资料,自动保存本 阅读全文

posted @ 2017-10-10 09:53 jackyu126 阅读(247) 评论(0) 推荐(0) 编辑

2017年9月26日

关于页面元素不能定位,通过Js进行处理

摘要: public class Test { public static void main(String[] args) throws Exception { File file = new File("C:\\Users\\HP\\AppData\\Roaming\\Mozilla\\Firefox\ 阅读全文

posted @ 2017-09-26 11:29 jackyu126 阅读(399) 评论(0) 推荐(0) 编辑

2017年9月22日

测序需求分析思路

摘要: 阅读全文

posted @ 2017-09-22 17:23 jackyu126 阅读(117) 评论(0) 推荐(0) 编辑

Linux性能监控工具命令--top

摘要: Linux性能监控工具命令(top) top,交互命令输入:1,查看所有cpu使用情况输入: h显示交互帮助信息输入:C ,CPU使用率排序输入:M,内存使用率排序输入:t,显示进程和cpu信息输入:H显示进程下的线程(或者top -Hp PID) 阅读全文

posted @ 2017-09-22 17:08 jackyu126 阅读(198) 评论(0) 推荐(0) 编辑

2017年9月12日

java实现selenium jquery滑动解锁

摘要: 1.首先了解Jquery实现功能 http://jqueryui.com/slider/ 2.实现如下功能 /** * 模拟jquery滑动解锁功能 * http://jqueryui.com/droppable/ * @param type * @param value */ public voi 阅读全文

posted @ 2017-09-12 20:44 jackyu126 阅读(575) 评论(1) 推荐(0) 编辑

导航