LoadRunner测试ajax框架的系统时,录制回放都没有报错,但是回放后系统中没有产生数据,数据始终不能写入数据库。查了一下原因,应该是录制的脚本不完善的问题,因为JS是在客户端执行的程序,LR只能监控客户机与服务器之前的通信。解决方法: Recording options> HTTP Prop...
分类:
Web程序 时间:
2015-06-21 00:47:59
阅读次数:
197
Unable to chmod /system/build.prop.: Read-only file system 只读文件系统所以需要更改使用下面的命令mount -o remount,rw /dev/block/stl6 /system设置完之后就恢复原来的状态mount -o remount...
分类:
其他好文 时间:
2015-06-19 15:03:44
阅读次数:
354
public class SystemInfo { public static void main(String[] args) { //系统属性 Properties prop = System.getProperties(); System.out.println(prop.getProper....
分类:
编程语言 时间:
2015-06-18 16:39:21
阅读次数:
95
设置值:? $(‘input:radio[name="statusRadios"][value="normal"]‘).prop(‘checked‘, true); 获取值: $("input[name=‘userState‘]:checked").val();...
分类:
Web程序 时间:
2015-06-18 15:32:40
阅读次数:
126
关键操作:效果如下:ViewController.h1 #import 2 3 @interface ViewController : UIViewController4 @property (strong, nonatomic) UIImageView *imgVAnimation;5 @prop...
分类:
其他好文 时间:
2015-06-16 21:02:54
阅读次数:
150
在高版本的jquery引入prop方法后,什么时候该用prop?什么时候用attr?它们两个之间有什么区别?这些问题就出现了。关于它们两个的区别,网上的答案很多。这里谈谈我的心得,我的心得很简单:对于HTML元素本身就带有的固有属性,在处理时,使用prop方法。对于HTML元素我们自己自定义的DOM...
分类:
Web程序 时间:
2015-06-16 18:56:36
阅读次数:
89
Reading Properties file :Properties prop = new Properties()def path = "D:\\SoapUIStudy\\application.properties"FileInputStream fs = new FileInputStrea...
分类:
其他好文 时间:
2015-06-16 16:40:35
阅读次数:
101
Code example :package com.file.properties;import java.io.FileInputStream;import java.util.Properties;public class ReadProperties { Properties prop; .....
分类:
编程语言 时间:
2015-06-16 16:21:13
阅读次数:
134
package com.file.properties;import java.io.FileInputStream;import java.util.Properties;public class ReadProperties { private static Properties prop =....
分类:
编程语言 时间:
2015-06-16 16:16:13
阅读次数:
122
jquery判断checked的三种方法:jquery判断checked的三种方法:.attr(‘checked’): //看版本1.6+返回:”checked”或”undefined” ;1.5-返回:true或false.prop(‘checked’): //16+:true/false.i.....
分类:
Web程序 时间:
2015-06-15 12:50:57
阅读次数:
165