LoadRunner calling the Jar package method

Source: Internet
Author: User
Tags throwable

Environment

Win7 (32-bit)/WINXP+LOADRUNNER11+JDK 1.6 (Be sure to configure the Java environment variable)

1. Create COM.MEDIVH package in eclipse

1  Package COM.MEDIVH; 2 3  Public class Helloword {4      Public  void Show (String str) {5         System.out.println ("Receive parameters:" +str); 6     }7 }

2. Export JAR Package

Click File-->export-->jar file-->next--> Select COM.MEDIVH Package-->finish

3. LoadRunner setting

New Java VUser

4, Import jar package file Helloworld.jar,run-->time Settings-->classpath join Helloworld.jar.

5. Write the following script:

import Lrapi.lr;import Com.golive.HelloWord; //Importing Jar Package Classes Public classactions{ Public intinit () throws Throwable {return 0; }//End of Init     Public intaction () throws Throwable {Helloword h=NewHelloword (); H.show ("Nihao"); return 0; }//End of Action     Public intEnd () throws Throwable {return 0; }//End of End}

6. Run the script

LoadRunner calling the Jar package method

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.