jmeter BeanShell 生成ip 获取ip 定义ip 变量

import java.util.Random;
//public class Main{
// public static void main(String[] args){
Random rand=new Random();
int i=(int)(Math.random()*100); // 生成0-100的随机数,包括0不包括100 – (0,100]
int j=rand.nextInt(100); // 这里是一个方法的重载,参数的内容是指定范围
int w=rand.nextInt(100);
int H=rand.nextInt(100);
System.out.println(i+"."+j+"."+w+"."+H); // 分别输出两个随机数
String str=i+"."+j+"."+w+"."+H;
System.out.println(str);
// vars.put(“huoquip”,str);
// log.info(“huoquip”);
// log.info(vars.get(“huoquip”));
// }
//}
log.info(“huoquip+++++++++++++++++++”);
vars.put(“str”,str);
log.info(vars.get(“str”));

你可能感兴趣的:(jmeter)