Java的微信開辟中應用XML格局和JSON格局數據的示例。本站提示廣大學習愛好者:(Java的微信開辟中應用XML格局和JSON格局數據的示例)文章只能為提供參考,不一定能成為您想要的結果。以下是Java的微信開辟中應用XML格局和JSON格局數據的示例正文
XML
微信XML新聞model界說:
package cn.wx.server; import org.dom4j.Document; import org.dom4j.DocumentException; import org.dom4j.DocumentHelper; import org.dom4j.Element; /** * @title cn.wx.serverXMLMsg.java * @todo TODO * @author lpe234 * @time 2014年5月21日下晝2:13:27 */ public class XMLMsg { //通俗新聞根本變量 String ToUserName; String FromUserName; String CreateTime; String MsgType; String Content; String MsgId; //事宜推送變量 String Event; //自界說菜單項 String EventKey; public String getEventKey() { return EventKey; } public void setEventKey(String eventKey) { EventKey = eventKey; } public XMLMsg(String str) throws DocumentException { Document doc = DocumentHelper.parseText(str); Element root = doc.getRootElement(); this.ToUserName = root.elementText("ToUserName"); this.FromUserName = root.elementText("FromUserName"); this.CreateTime = root.elementText("CreateTime"); this.MsgType = root.elementText("MsgType"); this.Content = root.elementText("Content"); this.MsgId = root.elementText("MsgId"); this.Event = root.elementText("Event"); this.EventKey = root.elementText("EventKey"); } public String getEvent() { return Event; } public void setEvent(String event) { Event = event; } public String getToUserName() { return ToUserName; } public void setToUserName(String toUserName) { ToUserName = toUserName; } public String getFromUserName() { return FromUserName; } public void setFromUserName(String fromUserName) { FromUserName = fromUserName; } public String getCreateTime() { return CreateTime; } public void setCreateTime(String createTime) { CreateTime = createTime; } public String getMsgType() { return MsgType; } public void setMsgType(String msgType) { MsgType = msgType; } public String getContent() { return Content; } public void setContent(String content) { Content = content; } public String getMsgId() { return MsgId; } public void setMsgId(String msgId) { MsgId = msgId; } }
JSON
這裡我們應用json-lib,留意一下須要以下幾個jar包的支撐:
以下是簡略的AccessToken類,前往String類型的access_token
package cn.wx.server; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.net.MalformedURLException; import java.net.URL; import java.net.URLConnection; import net.sf.json.JSONObject; public class AccessToken { /** * 依據注冊信息,取得的參數,提交get要求,取得accessTkoen * @author lpe234 * @time 2014-5-21 00:52:15 */ String appID = "XXXXXXXXXXXXXX"; String appsecret = "XXXXXXXXXXXXXXXXX";//微佩服務號或許請求測試賬號的定閱號才有。。。 String preUrl = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=%s&secret=%s"; String tempUrl = String.format(preUrl, appID, appsecret); /** 測試 * public static void main(String[] args) { * AccessToken as = new AccessToken(); * System.out.println(as.get()); * } */ //前往String類型access_token public String get() { String temp = null; temp = getJSON(); JSONObject j = JSONObject.fromObject(temp); temp = j.getString("access_token"); //System.out.println(temp); return temp; } // 獲得wx辦事器前往JSON數據,private外部挪用 private String getJSON() { String temp = null; try { URL url = new URL(tempUrl); URLConnection conn = url.openConnection(); InputStreamReader isr = new InputStreamReader(conn.getInputStream()); BufferedReader br = new BufferedReader(isr); temp = br.readLine(); } catch (MalformedURLException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } //System.out.println(temp); return temp; } }
額 年夜體就是如許