您好,登錄后才能下訂單哦!
附件來自百度。
腳本正文:
/*
* LoadRunner Java script. (Build: _build_number_)
*
* Script Description:
*
*/
import lrapi.lr;
public class Actions
{
public int init() throws Throwable {
return 0;
}//end of init
public int action() throws Throwable {
com.CTLPTest ct1 = new com.CTLPTest();
ct1.main(null);
return 0;
}//end of action
public int end() throws Throwable {
return 0;
}//end of end
}
jar包內(nèi)容:
package com; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.URL; import java.security.cert.X509Certificate; import java.util.Properties; import java.util.Random; import javax.net.ssl.HostnameVerifier; import javax.net.ssl.SSLSession; import javax.net.ssl.X509TrustManager; public class CTLPTest { public static void main(String[] args) { CTLPTest lbs = new CTLPTest(); String ltpUrl = lbs.ltpRequestUrl(); System.out.println("ltpUrl:"+ltpUrl); System.out.println("lbs.ltpRequestUrl(ltpUrl):"+lbs.ltpRequestUrl(ltpUrl)); } public int ltpRequestUrl(String ltpRequestUrl) { int returnCount = -1; try { URL url = new URL(ltpRequestUrl); Properties prop = System.getProperties(); System.setProperty("http.proxyHost", "proxy.com"); System.setProperty("http.proxyPort", "80"); //http HttpURLConnection http = (HttpURLConnection)url.openConnection(); http.setUseCaches(false); http.connect(); //http InputStream in = http.getInputStream(); // byte[] b = new byte[in.available()]; in.read(b); // String res = new String(b); System.out.println("res:"); System.out.println(res); //ж,÷ int of = res.indexOf("resultCode"); if (of < 0) { System.out.println("***************failure***********************"); returnCount = -1; } else { returnCount = 1; } }catch(Exception e){ System.out.println("Exception"); System.out.println(e); returnCount = -1; } return returnCount; } public String ltpRequestUrl() { StringBuilder param = new StringBuilder("http://xxx.xxx.com"); // param.append("userid-1"); // param.append("&appName=LBS&Apikey=D39hr1FgplZSjV2eNVW71wvbYbl8Mip4"); return param.toString(); } }
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。