Java의 위챗 개발에서 XML 형식과 JSON 형식의 데이터를 사용하는 예
위챗 XML 메시지 모델 정의:
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 패키지의 지원이 필요합니다.
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;
}
}
어, 대체로 이렇다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JPA + QueryDSL 계층형 댓글, 대댓글 구현(2)이번엔 전편에 이어서 계층형 댓글, 대댓글을 다시 리팩토링해볼 예정이다. 이전 게시글에서는 계층형 댓글, 대댓글을 구현은 되었지만 N+1 문제가 있었다. 이번에는 그 N+1 문제를 해결해 볼 것이다. 위의 로직은 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.