摘要:
解决方法: 启动任务管理器——性能——资源监视器——CPU选项卡——关联的句柄——搜索句柄 ——(输入)要删除的文件夹名——搜索到与文件夹名句柄相关联的进程 (由于此程序进程正在调用文件夹,才造成了对该文件夹删除的失败。) ——(右键)该进程——结束进程——弹出警告对话框——确认后即可结束该进程,然 阅读全文
摘要:
http://stackoverflow.com/questions/9220132/soapui-groovy-script-calls-to-command-line SoapUI支持用命令行方式运行测试用例并生成测试报告,因此使用SoapUI可以很好地进行接口测试自动化测试以及持续集成。 首先 阅读全文
摘要:
// get the headers of the requestdef content= messageExchange.getResponseContent()def headers = messageExchange.getResponseHeaders()log.info headers / 阅读全文
摘要:
/** * @author ${user} * @description * ${tags} * @CreateDate ${date} ${time} * @modifyUser * @modifyDate * @comments */ 阅读全文
摘要:
如果不高亮显示了:工具栏里有个黄色小笔的图标,点一下就可以了,或者alt+shift+O 设置高亮显示: 设置高亮背景色: 阅读全文
摘要:
改变背景颜色(黑底背景的设置) windows->Preferences->General->Editor->Text Editors 右边选择Appearance color options 选Background color 选择背景颜色 背景配色:160,0,59 选Current line 阅读全文
摘要:
==> 按住Alt键不放,用鼠标左键从第一行的开头处按住向下拉,直到所有行 松开Alt键和鼠标左键,你会发现光标变成了一条跨越所有行的竖线==> 如果不想使用鼠标操作,可以使用 Alt+Shift+↑/↓ 来进行指定多行 阅读全文
摘要:
public List sortListIgnoreCase(List list) { Collections.sort(list, new Comparator() { @Override public int compare(String s1, String s2) { ... 阅读全文
摘要:
==> .x-boundlist-floating[style$="px;"] .x-boundlist-item 元素中含有Style属性,并且属性值以"px;"结尾 查找元素中的属性值不包含某些内容的一种变通方法==> div.x-boundlist:not([style*='dis... 阅读全文
摘要:
方法1:ArrayList arrList1 = (ArrayList) Arrays.asList("Buenos Aires", "Cordoba", "La Plata");方法2:List arrList2 = Arrays.asList("Buenos Aires", "Cordoba",... 阅读全文