首页 智能问答 智能问答示例代码 智能回复[Java]

智能回复示例代码[Java]

作者:xiezhongpian 阅读数:1304 上传时间:2017-05-09

智能回复

package api.binstd.iqa;

import java.net.URLEncoder;

import api.util.HttpUtil;
import net.sf.json.JSONObject;

public class Query {

	public static final String APPKEY = "your_appkey_here";// 你的appkey
	public static final String URL = "http://api.binstd.com/iqa/query";
	public static final String question = "杭州天气";// 问题(utf-8)

	public static void Get() throws Exception {
		String result = null;
		String url = URL + "?appkey=" + APPKEY + "&question=" + URLEncoder.encode(question, "utf-8");

		try {
			result = HttpUtil.sendGet(url, "utf-8");
			JSONObject json = JSONObject.fromObject(result);
			if (json.getInt("status") != 0) {
				System.out.println(json.getString("msg"));
			} else {
				JSONObject resultarr = json.optJSONObject("result");
				String type = resultarr.getString("type");
				String content = resultarr.getString("content");
				String relquestion = resultarr.getString("relquestion");
				System.out.println(type + " " + content + " " + relquestion);
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}