bank_import.js 393 Bytes
Newer Older
陆正友's avatar
陆正友 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
importClass(Packages.com.hand.hl.HttpPostUtilNew);
importPackage(Packages.java.io);
importPackage(Packages.java.util);
//importClass(Packages.leaf.plugin.util.Base64);


function httpPostDocImportBank(postUrl,data,token,tokentype) {
	try {
		var result = new HttpPostDocQuery().httpPostDocImport(postUrl,data,token,tokentype);
		return result;
	} catch (e) {
		println(e);
		return false;
	}
}