码迷,mamicode.com
首页 > 编程语言 > 详细

loadrunner调用jar包方法

时间:2017-05-15 16:27:29      阅读:411      评论:0      收藏:0      [点我收藏+]

标签:idt   ring   upload   https   set   win7   aac   png   nis   

环境

win7(32位)/winXP+loadrunner11+JDK 1.6(一定要配置JAVA环境变量)

1、Eclipse中创建com.medivh包

1 package com.medivh;
2 
3 public class HelloWord {
4     public  void show(String str){
5         System.out.println("接收参数:"+str);
6     }
7 }

技术分享技术分享

2、导出JAR包

    点击file-->export-->JAR file-->Next-->选择com.medivh包-->Finish

3、loadrunner设置

    新建Java Vuser

    技术分享

 

 

 

 

 

 

 

 

 

 

 

 

 

4、导入jar包文件HelloWorld.jar,Run-->time Settings-->classpath加入HelloWorld.jar。

5、编写脚本如下:

import lrapi.lr;
import com.golive.HelloWord;    //导入JAR包类

public class Actions
{

    public int init() throws Throwable {
        return 0;
    }//end of init


    public int action() throws Throwable {
        HelloWord h = new HelloWord();
        h.show("nihao");
        return 0;
    }//end of action


    public int end() throws Throwable {
        return 0;
    }//end of end
}

技术分享

6、运行脚本

loadrunner调用jar包方法

标签:idt   ring   upload   https   set   win7   aac   png   nis   

原文地址:http://www.cnblogs.com/medivhxu/p/6856745.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!