如何读取文件中多个待压测的url,然后一个一个执行

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

如何读取文件中多个待压测的url,然后一个一个执行

chenmeiling
Reply | Threaded
Open this post in threaded view
|

Re: 如何读取文件中多个待压测的url,然后一个一个执行

sitmd2012

1.定义一个全局变量
public static String[] text

2.在beforeProcess()中读取配置文件
text =  Util.readFileString("./resources/url.txt", "utf-8")

3.在test()中使用
int index = (int) (Math.random() * text.length);
text[index] 就是要用的url
Reply | Threaded
Open this post in threaded view
|

Re: 如何读取文件中多个待压测的url,然后一个一个执行

yu.zhai
In reply to this post by chenmeiling
有目录的文件会出现,读取不到文件的情况吧