首页 周公解梦 周公解梦示例代码 周公解梦[Java]

周公解梦示例代码[Java]

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

周公解梦

package api.jisuapi.dream;

import java.net.URLEncoder;

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

public class Search {

	public static final String APPKEY = "your_appkey_here";// 你的appkey
	public static final String URL = "https://api.jisuapi.com/dream/search";
	public static final String keyword = "鞋";//utf-8

	public static void Get() throws Exception {
		String result = null;
		String url = URL + "?appkey=" + APPKEY + "&keyword=" + URLEncoder.encode(keyword,"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 {
				JSONArray resultarr = json.optJSONArray("result");
				for (int i = 0; i < resultarr.size(); i++) {
					JSONObject obj = (JSONObject) resultarr.opt(i);
					String name = obj.getString("name");
					String content = obj.getString("content");
					System.out.println(name + " " + content);
				}
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}