在函数管理器里面写自己的CLASS类,编译成功后,可以直接调用
public class ScmFunGetPw extends AbstractFunction {
public Object run(Object[] args) {
String A=args[0].toString();
if(A=="" || A==null)
{
A="参数";
}
String httpUrl = "webService地址"+A;
String str = "";
try {
URL url = new URL(httpUrl);
HttpURLConnection conn = (HttpURLConnection)url.openConnection();
//设置访问时间
conn.setConnectTimeout(5000);
//访问方式为get
conn.setRequestMethod("GET");
if(conn.getResponseCode() == HttpURLConnection.HTTP_OK) {
//自己方法
}
} catch (Exception e) {
e.printStackTrace();
}
return str;
}
}