十二月 02, 2015 5:16:56 下午 org.openqa.selenium.os.ProcessUtils killWinProcess警告: Process refused to die after 10 seconds, and couldn't taskkill itjava.lang.NullPointerException: Unable to find executable for: taskkill[无法找到可执行文件taskkill]…
转自:http://blog.sina.com.cn/s/blog_994678b90101f035.html 项目运用IbatisNet 今天更新项目,编译完点击运行,报错如下: [“/”应用程序中的服务器错误.Unable to load embedded resource from assembly ] 解决办法: 1.选中当前报错的xml文件 2.在属性当中找到“生成操作”定义为“嵌入的资源”,选项如下: 3.重新编译运行.…
1.增加调试信息寻找问题 2.两种方式解决unable to load native-hadoop library for you platform 附:libc/glibc/glib简介 参考: 1.http://my.oschina.net/swuly302/blog/515853[66号公路: Hadoop Unable to load­ ­n­­ati­v­e­-­h­a­­d­o­o­­p library for your platform] 2.http://blog.sina.co…
cd  进入目录 dir  列出当前目录下的文件[在linux上是ls] e:  进入E盘 tab键可以快速进入目录…
查看Eclipse版本号 http://jingyan.baidu.com/article/020278118660e81bcd9ce545.html Window>preferences输入SVN,没有内容则是没有安装插件 方法一:在线安装 Help->eclipse marketplace,搜索svn 选择Subeclipse 1.10.6[我的eclipse是4.3.0],点击install下一步如下 然后,直接finish 下一步就是安装了 检查是否安装成功,同样Window>p…
我的环境:window32位 +jdk1.7.0_75+maven3.3.3 1.ctrl+N 新建maven project项目 2.选择maven-archetype-webapp [这里一开始用all calalogs我是报错的,后面通过配置maven>archetypes的maven ctlalogs,然后选择maven catalogs 参考我的博客<新建maven web工程报错>] 3.填写信息 方法二的第二步: 2.选择maven-archetype-webapp 方法二…
电子邮箱控件用例: 1.只输入字母,如:abc 2.只输入数字,如:123 3.空白.空格或回车等 4.特殊的字符,如:¥,$等 5.上述四种的组合 6.不正确的邮箱组合: ①.abc@sohucom ②.abc@.com ③.abc@sina com ④.abc@com 7. 不正确的域名后缀,如:a@b.hello 8.粘贴或者输入文本字母.数字以外字符: 9.其他项内容Check详见[1.文本框-普通类]用例(100): 提示:邮箱格式无效…
早上配置SVN,但是这次不是那么顺利... 环境: Windows 7 SVN服务器端:CollabNetSubversion-server-1.8.13-1 SVN客户端:TortoiseSVN_V1.9.0.26652 做SVN检出操作时,报错: Unable to connect to Test repository at URL 'svn://localhost/Test' Expected FS format between '1' and '6'; found format '7'…
原文网址:http://blog.csdn.net/zengyangtech/article/details/7003379 欢迎转载,转载请注明 http://blog.csdn.net/zengyangtech/article/details/7003379 今天,在编译一个大工程的时候遇到了问题 Unable to execute dex: Java heap space 上网找了一下,有两种解决方案: 1. eclipse.int 添加内存 2. 导入工程的jar通过 add User…
通常我们喜欢将hql查询结果封装到POJO对象syntax:select new POJO(id,name) from POJO ; 这种封装需要POJO类提供对应构造器,POJO(id,name)构造方法. 但使用中经常会抛这样的异常:Unable to locate appropriate constructor on class. 出现这个异常需要检查以下几种情况:1)参数构造器的参数类型是否正确2)参数构造器的顺序和hql中的顺序是否一致3)参数构造器的参数个数是否和hql中的个数一致4…
启动hbase ,验证出错 Master is initializing 查看zk日志,发现Unable to read additional data from client sessionid 0x15c92bd1fca0003, likely client has closed socket…
type Exception report message description The server encountered an internal error () that prevented it from fulfilling this request. exception org.apache.jasper.JasperException: Unable to compile class for JSP: An error occurred at line: 22 in the g…
1.Unable to save settings: Failed to save settings. Please restart PyCharm解决 将工程的.idea目录删掉,重启pycharm即可. 2.error:please select a valid Python interpreter 问题原因: 在pycharm导入源项目的时候没有选择运行Python的程序 解决办法: 1).更改Pycharm的设置 打开settings(CTRL + ALT + S)或者file>sett…
http://www.cnblogs.com/java-pan/archive/2012/04/07/2436507.html…
公司电脑:win7+64位 问题:点击sikuli_ide没有反应 卸载了,启动电脑,重新安装.…
This is a build path issue. Make sure your bin folder is not included in your build path. Right click on your project -> go to properties -> Build Path. Make sure that Honeycomb library is in your libs/ folder and not in your source folder. Include…
原因: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spri…
File>Open 导入成功…
1.选择虚拟机,选中导航栏虚拟机>VMware Tool安装 选择右键>extract to 选择/home,新建了自己的文件夹,然后点击extract 一直enter,一直到 然后reboot进行重启就ok了…
使用单引号(') 你可以用单引号指示字符串,就如同‘How are you’这样.所有的空白,即空格跟制表符都照原样保留 使用双引号(“) 在双引号中的字符串与单引号中的字符串的使用完全相同,例如“What's you name ?” 使用三引号(’ ‘ ’或”“”) 利用三引号,你可以指示一个多行的字符串.可以再三引号中自由的使用单引号和双引号.例如 转义符: 假设你想要在一个字符串中包含一个单引号('),那么你该怎么指示这个字符串?例如,这个字符串是What's your name?.你肯定…
sequence:序列 首先要有create sequence或者create any sequence权限: 1.语法如下: create sequence  cltest---序列名 increment by 1   //每次加1 start with 1    //从1开始计数 Nomaxvalue  //不设置最大值 Nocycle      //一直累计,不循环 CACHE 10://设置缓存cache个序列,如果系统down掉了或者其他情况将导致序列不连续,也可以设置为 NOCACH…
原因是我直接把jar包放在了仓库里面 解决办法:将jar办放在不是仓库路径位置,在进行install就okle…
页面链接http://192.168.2.51:8080/xxcb1/xxbs/action/handling!view.action?toId=402882ae4e7d1761014e877fb229000b1.ctrl+shift+r  输入handingA则可以找到action页面 2.在action页面用ctrl+o查找view方法,看该方法的返回值  比如是:return“view”3.再ctrl+shift+r  输入handing-view就可以找到改界面…
/*创建的类为junit class*/ package Selenium_lassen; import static org.junit.Assert.*; import java.io.File; import org.junit.After;import org.junit.Before;import org.junit.Test;import org.openqa.selenium.By;import org.openqa.selenium.WebDriver;import org.op…
/*创建类的时候是TestNG Class*/ package Selenium_lassen; import static org.junit.Assert.*; import java.util.concurrent.TimeUnit; import org.junit.After;import org.junit.Before;import org.junit.Test;import org.openqa.selenium.By;import org.openqa.selenium.Web…
http://blog.csdn.net/sushengmiyan/article/details/40142771 使用maven创建一个helloworld 在本地硬盘创建一个文件夹作为maven项目工作目录,cmd切换到这个目录,然后执行如下cmd命令: 第一步:mvn archetype:generate -DgroupId=maven.demo.start -DartifactId=HelloMaven -DarchetypeArtifactId=maven-archetype-qui…
org.openqa.selenium.WebDriverException: Cannot find firefox binary in PATH. Make sure firefox is installed. OS appears to be: VISTABuild info: version: '2.48.2', revision: '41bccdd', time: '2015-10-09 19:59:12'System info: host: 'MININT-RQ9DS4O', ip:…
交叉连接(cross join):该连接产生的结果集笛卡尔积 a有7行,b有8行    a的第一行与b的每一行进行连接,就有8条a得第一行 7*8=56条 select a.real_name,s.unix_host,s.os_username from account a cross  join service s:(56条) select a.real_name,s.unix_host,s.os_username from account a cross  join service s wh…
有推荐人/没有推荐人的 recommender_id is null / is not null 谁是推荐人=他的id是别人的recommender_id=某个人的recommender_id是他的id 谁不是推荐人 = 他的id跟所有人的recommender_id不一样 //哪些os账号的开通时间是最早的 select unix_host,os_username,create_date from service where create_date = (select min(create_d…
8种基本数据类型 整数的演示:任何数据在内存中都是2进制的数据 内存中没有10进制没有16进制 byte 范围: -128 ~127 short 范围:-32768 ~ 32768 int 范围:-2^31 ~ 2^31-1 //以下一行代码是将"直接量5"赋值给“变量i” int i = 5://5是直接量也叫字面量,即直接写出的常数 备注:整数直接量都是int类型的数据,以0x开始的直接量是16进制格式 如 int i = 0x10,输出结果是16 long类型数据: long l…