NC65接口事例

该博客详细展示了如何使用Java实现NC65接口来获取和处理数据,包括HTTP请求、JSON解析、数据库操作,以及根据操作标记进行增删改查的操作。
摘要由CSDN通过智能技术生成
package nc.bs.gl.ds;


import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.net.HttpURLConnection;
import java.net.URL;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;














import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import nc.bs.dao.BaseDAO;
import nc.bs.framework.common.NCLocator;
import nc.bs.logging.Logger;
import nc.bs.pub.pa.PreAlertObject;
import nc.bs.pub.taskcenter.BgWorkingContext;
import nc.bs.pub.taskcenter.IBackgroundWorkPlugin;
import nc.itf.uap.IUAPQueryBS;
import nc.jdbc.framework.processor.ArrayListProcessor;
import nc.vo.pub.BusinessException;


public class PersonInfo implements IBackgroundWorkPlugin {


private BaseDAO dao;


private BaseDAO getDao() {
if (dao == null) {
dao = new BaseDAO();
}
return dao;
}


public PreAlertObject executeTask(BgWorkingContext bgwc)
throws BusinessException {
System.out.println("");
String isSuccess="0";
try {
String sqlQueryUrl = "select * from GL_URLCOM where code='Person'";
String apiUrl = "";
IUAPQueryBS bs = NCLocator.getInstance().lookup(IUAPQueryBS.class);
List<Object> listUU = (List<Object>) bs.executeQuery(
sqlQueryUrl.toString(), new ArrayListProcessor());
if (listUU != null && listUU.size() > 0) {


Object[] objs1 = (Object[]) listUU.get(0);
apiUrl = (String) objs1[2];
}



URL url = new URL(apiUrl);
            HttpURLConnection connection = (HttpURLConnection) url
                    .openConnection();
            connection.setDoOutput(true);
            connection.setDoInput(true);
            connection.setRequestMethod("POST");
            connection.setUseCaches(false);
            connection.setInstanceFollowRedirects(true);
            connection.setRequestProperty("Content-Type","application/json; charset=utf-8;");


            connection.connect();


            SimpleDateFormat formatter = new SimpleDateFormat(
"yyyyMMddHHmmssSSS");
// 得到系统当前时间,转换对应的格式并返回
String time = formatter.format(new Date());

//接收数据并且相应信息返回
PrintWriter outprint = new PrintWriter(
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值