java 接收解析微信公众号返回XML数据包,消息,地理位置

转自:https://i-blog.csdnimg.cn/blog_migrate/0e1f5a1d9b6f6503038060d27f5d4dcc.png

本人在网上找了很多 关于java接收并解析微信返回XML数据包的问题,很多都是写得很简单,对于我这种菜鸟来说,根本看不明白。下面是我自己结合本人遇到的问题和参考网上的大神些的知识总结一下。

第一步:

用户同意上报地理位置后,每次进入公众号会话时,都会在进入时上报地理位置,或在进入会话后每5秒上报一次地理位置,公众号可以在公众平台网站中修改以上设置。上报地理位置时,微信会将上报地理位置事件推送到开发者填写的URL。

这里填写的url,如图

url填写为自己服务器的域名 如:http://www.xxxx.com/weixin/chat

/weixin/chat  是下面wxEventController ,推送的链接。

Token(令牌) : 随意

EncodingAESKey :随机生成就可以



第二步:创建自己的controller,并解析 微信返回xml数据包

  1. package com.dxx.function.sdweixin.controller;  
  2.   
  3. import java.io.IOException;  
  4. import java.util.Calendar;  
  5. import java.util.Date;  
  6.   
  7. import javax.servlet.ServletInputStream;  
  8. import javax.servlet.http.HttpServletRequest;  
  9. import javax.servlet.http.HttpServletResponse;  
  10.   
  11. import org.apache.commons.logging.Log;  
  12. import org.apache.commons.logging.LogFactory;  
  13. import org.springframework.stereotype.Controller;  
  14. import org.springframework.ui.Model;  
  15. import org.springframework.web.bind.annotation.RequestMapping;  
  16. import org.springframework.web.bind.annotation.RequestMethod;  
  17. import org.springframework.web.bind.annotation.ResponseBody;  
  18.   
  19. import com.dxx.function.sdweixin.vo.ImageMessage;  
  20. import com.dxx.function.sdweixin.vo.InputMessage;  
  21. import com.dxx.utils.MsgType;  
  22. import com.dxx.utils.OutputMessage;  
  23. import com.dxx.utils.SerializeXmlUtil;  
  24. import com.thoughtworks.xstream.XStream;  
  25.   
  26.   
  27.   
  28.   
  29. @Controller  
  30. @RequestMapping("/weixin")  
  31. public class wxEventController {  
  32.       
  33.     Log logger = LogFactory.getLog(wxEventController.class);  
  34.       
  35.       
  36.     private String Token = "sdapp080808";    
  37.         
  38.     @RequestMapping(value = "/chat", method = { RequestMethod.GET, RequestMethod.POST })    
  39.     @ResponseBody    
  40.     public void liaotian(Model model, HttpServletRequest request, HttpServletResponse response) {    
  41.         System.out.println("进入chat");    
  42.         boolean isGet = request.getMethod().toLowerCase().equals("get");    
  43.         if (isGet) {    
  44.             String signature = request.getParameter("signature");    
  45.             String timestamp = request.getParameter("timestamp");    
  46.             String nonce = request.getParameter("nonce");    
  47.             String echostr = request.getParameter("echostr");    
  48.             System.out.println(signature);    
  49.             System.out.println(timestamp);    
  50.             System.out.println(nonce);    
  51.             System.out.println(echostr);    
  52.             //access(request, response);    
  53.         } else {    
  54.             // 进入POST聊天处理    
  55.             System.out.println("enter post");    
  56.             try {    
  57.                 // 接收消息并返回消息    
  58.                 acceptMessage(request, response);    
  59.             } catch (IOException e) {    
  60.                 e.printStackTrace();    
  61.             }    
  62.         }    
  63.     }    
  64.     
  65.     /**   
  66.      * 验证URL真实性   
  67.      *    
  68.      * @author morning   
  69.      * @date 2015年2月17日 上午10:53:07   
  70.      * @param request   
  71.      * @param response   
  72.      * @return String   
  73.      */    
  74. //    private String access(HttpServletRequest request, HttpServletResponse response) {    
  75. //        // 验证URL真实性    
  76. //        System.out.println("进入验证access");    
  77. //        String signature = request.getParameter("signature");// 微信加密签名    
  78. //        String timestamp = request.getParameter("timestamp");// 时间戳    
  79. //        String nonce = request.getParameter("nonce");// 随机数    
  80. //        String echostr = request.getParameter("echostr");// 随机字符串    
  81. //        List<String> params = new ArrayList<String>();    
  82. //        params.add(Token);    
  83. //        params.add(timestamp);    
  84. //        params.add(nonce);    
  85. //        // 1. 将token、timestamp、nonce三个参数进行字典序排序    
  86. //        Collections.sort(params, new Comparator<String>() {    
  87. //            @Override    
  88. //            public int compare(String o1, String o2) {    
  89. //                return o1.compareTo(o2);    
  90. //            }    
  91. //        });    
  92. //        // 2. 将三个参数字符串拼接成一个字符串进行sha1加密    
  93. //        String temp = SHA1.encode(params.get(0) + params.get(1) + params.get(2));    
  94. //        if (temp.equals(signature)) {    
  95. //            try {    
  96. //                response.getWriter().write(echostr);    
  97. //                System.out.println("成功返回 echostr:" + echostr);    
  98. //                return echostr;    
  99. //            } catch (IOException e) {    
  100. //                e.printStackTrace();    
  101. //            }    
  102. //        }    
  103. //        System.out.println("失败 认证");    
  104. //        return null;    
  105. //    }    
  106.     
  107.     private void acceptMessage(HttpServletRequest request, HttpServletResponse response) throws IOException {    
  108.         // 处理接收消息    
  109.         ServletInputStream in = request.getInputStream();    
  110.         // 将POST流转换为XStream对象    
  111.         XStream xs = SerializeXmlUtil.createXstream();    
  112.         xs.processAnnotations(InputMessage.class);    
  113.         xs.processAnnotations(OutputMessage.class);    
  114.         // 将指定节点下的xml节点数据映射为对象    
  115.         xs.alias("xml", InputMessage.class);    
  116.         // 将流转换为字符串    
  117.         StringBuilder xmlMsg = new StringBuilder();    
  118.         byte[] b = new byte[4096];    
  119.         for (int n; (n = in.read(b)) != -1;) {    
  120.             xmlMsg.append(new String(b, 0, n, "UTF-8"));    
  121.         }    
  122.         // 将xml内容转换为InputMessage对象    
  123.         InputMessage inputMsg = (InputMessage) xs.fromXML(xmlMsg.toString());    
  124.     
  125.         String servername = inputMsg.getToUserName();// 服务端    
  126.         String custermname = inputMsg.getFromUserName();// 客户端    
  127.         long createTime = inputMsg.getCreateTime();// 接收时间    
  128.         Long returnTime = Calendar.getInstance().getTimeInMillis() / 1000;// 返回时间    
  129.     
  130.         // 取得消息类型    
  131.         String msgType = inputMsg.getMsgType();    
  132.         // 根据消息类型获取对应的消息内容    
  133.         if (msgType.equals(MsgType.Text.toString())) {    
  134.             // 文本消息    
  135.             System.out.println("开发者微信号:" + inputMsg.getToUserName());    
  136.             System.out.println("发送方帐号:" + inputMsg.getFromUserName());    
  137.             System.out.println("消息创建时间:" + inputMsg.getCreateTime() + new Date(createTime * 1000l));    
  138.             System.out.println("消息内容:" + inputMsg.getContent());    
  139.             System.out.println("消息Id:" + inputMsg.getMsgId());    
  140.     
  141.             StringBuffer str = new StringBuffer();    
  142.             str.append("<xml>");    
  143.             str.append("<ToUserName><![CDATA[" + custermname + "]]></ToUserName>");    
  144.             str.append("<FromUserName><![CDATA[" + servername + "]]></FromUserName>");    
  145.             str.append("<CreateTime>" + returnTime + "</CreateTime>");    
  146.             str.append("<MsgType><![CDATA[" + msgType + "]]></MsgType>");    
  147.             str.append("<Content><![CDATA[你说的是:" + inputMsg.getContent() + ",吗?]]></Content>");    
  148.             str.append("</xml>");    
  149.             System.out.println(str.toString());    
  150.             response.getWriter().write(str.toString());    
  151.         }    
  152.         // 获取并返回多图片消息    
  153.         if (msgType.equals(MsgType.Image.toString())) {    
  154.             System.out.println("获取多媒体信息");    
  155.             System.out.println("多媒体文件id:" + inputMsg.getMediaId());    
  156.             System.out.println("图片链接:" + inputMsg.getPicUrl());    
  157.             System.out.println("消息id,64位整型:" + inputMsg.getMsgId());    
  158.     
  159.             OutputMessage outputMsg = new OutputMessage();    
  160.             outputMsg.setFromUserName(servername);    
  161.             outputMsg.setToUserName(custermname);    
  162.             outputMsg.setCreateTime(returnTime);    
  163.             outputMsg.setMsgType(msgType);    
  164.             ImageMessage images = new ImageMessage();    
  165.             images.setMediaId(inputMsg.getMediaId());    
  166.             outputMsg.setImage(images);    
  167.             System.out.println("xml转换:/n" + xs.toXML(outputMsg));    
  168.             response.getWriter().write(xs.toXML(outputMsg));    
  169.     
  170.         }    
  171.     }    
  172.     
  173. }    
  174.       



第三步:其他用到的类

  1. package com.dxx.utils;  
  2.   
  3. import java.io.Writer;  
  4. import java.lang.reflect.Field;  
  5.   
  6. import com.dxx.function.sdweixin.service.XStreamCDATA;  
  7. import com.thoughtworks.xstream.XStream;  
  8. import com.thoughtworks.xstream.annotations.XStreamAlias;  
  9. import com.thoughtworks.xstream.core.util.QuickWriter;  
  10. import com.thoughtworks.xstream.io.HierarchicalStreamWriter;  
  11. import com.thoughtworks.xstream.io.xml.PrettyPrintWriter;  
  12. import com.thoughtworks.xstream.io.xml.XppDriver;  
  13.     
  14.   
  15.     
  16. /**  
  17.  * xml 转换工具类  
  18.  *   
  19.  * @author morning  
  20.  * @date 2015年2月16日 下午2:42:50  
  21.  */    
  22. public class SerializeXmlUtil {    
  23.     
  24.     public static XStream createXstream() {    
  25.         return new XStream(new XppDriver() {    
  26.             @Override    
  27.             public HierarchicalStreamWriter createWriter(Writer out) {    
  28.                 return new PrettyPrintWriter(out) {    
  29.                     boolean cdata = false;    
  30.                     Class<?> targetClass = null;    
  31.     
  32.                     @Override    
  33.                     public void startNode(String name, @SuppressWarnings("rawtypes") Class clazz) {    
  34.                         super.startNode(name, clazz);    
  35.                         // 业务处理,对于用XStreamCDATA标记的Field,需要加上CDATA标签    
  36.                         if (!name.equals("xml")) {    
  37.                             cdata = needCDATA(targetClass, name);    
  38.                         } else {    
  39.                             targetClass = clazz;    
  40.                         }    
  41.                     }    
  42.     
  43.                     @Override    
  44.                     protected void writeText(QuickWriter writer, String text) {    
  45.                         if (cdata) {    
  46.                             writer.write("<![CDATA[");    
  47.                             writer.write(text);    
  48.                             writer.write("]]>");    
  49.                         } else {    
  50.                             writer.write(text);    
  51.                         }    
  52.                     }    
  53.                 };    
  54.             }    
  55.         });    
  56.     }    
  57.     
  58.     private static boolean needCDATA(Class<?> targetClass, String fieldAlias) {    
  59.         boolean cdata = false;    
  60.         // first, scan self    
  61.         cdata = existsCDATA(targetClass, fieldAlias);    
  62.         if (cdata)    
  63.             return cdata;    
  64.         // if cdata is false, scan supperClass until java.lang.Object    
  65.         Class<?> superClass = targetClass.getSuperclass();    
  66.         while (!superClass.equals(Object.class)) {    
  67.             cdata = existsCDATA(superClass, fieldAlias);    
  68.             if (cdata)    
  69.                 return cdata;    
  70.             superClass = superClass.getClass().getSuperclass();    
  71.         }    
  72.         return false;    
  73.     }    
  74.     
  75.     private static boolean existsCDATA(Class<?> clazz, String fieldAlias) {    
  76.         if ("MediaId".equals(fieldAlias)) {    
  77.             return true// 特例添加 morning99    
  78.         }    
  79.         // scan fields    
  80.         Field[] fields = clazz.getDeclaredFields();    
  81.         for (Field field : fields) {    
  82.             // 1. exists XStreamCDATA    
  83.             if (field.getAnnotation(XStreamCDATA.class) != null) {    
  84.                 XStreamAlias xStreamAlias = field.getAnnotation(XStreamAlias.class);    
  85.                 // 2. exists XStreamAlias    
  86.                 if (null != xStreamAlias) {    
  87.                     if (fieldAlias.equals(xStreamAlias.value()))// matched    
  88.                         return true;    
  89.                 } else {// not exists XStreamAlias    
  90.                     if (fieldAlias.equals(field.getName()))    
  91.                         return true;    
  92.                 }    
  93.             }    
  94.         }    
  95.         return false;    
  96.     }    
  97.     
  98. }    
  1. package com.dxx.function.sdweixin.vo;  
  2.   
  3. import java.io.Serializable;  
  4.   
  5. import com.thoughtworks.xstream.annotations.XStreamAlias;  
  6. /**  
  7.  * POST的XML数据包转换为消息接受对象  
  8.  *   
  9.  * <p>  
  10.  * 由于POST的是XML数据包,所以不确定为哪种接受消息,<br/>  
  11.  * 所以直接将所有字段都进行转换,最后根据<tt>MsgType</tt>字段来判断取何种数据  
  12.  * </p>  
  13.  *   
  14.  */    
  15. @XStreamAlias("xml")    
  16. public class InputMessage implements Serializable {    
  17.     
  18.     /**  
  19.      *   
  20.      */    
  21.     private static final long serialVersionUID = 1L;    
  22.     @XStreamAlias("ToUserName")    
  23.     private String ToUserName;    
  24.     @XStreamAlias("FromUserName")    
  25.     private String FromUserName;    
  26.     @XStreamAlias("CreateTime")    
  27.     private Long CreateTime;    
  28.     @XStreamAlias("MsgType")    
  29.     private String MsgType = "text";    
  30.     @XStreamAlias("MsgId")    
  31.     private Long MsgId;    
  32.     // 文本消息    
  33.     @XStreamAlias("Content")    
  34.     private String Content;    
  35.     // 图片消息    
  36.     @XStreamAlias("PicUrl")    
  37.     private String PicUrl;    
  38.     // 位置消息    
  39.     @XStreamAlias("LocationX")    
  40.     private String LocationX;    
  41.     @XStreamAlias("LocationY")    
  42.     private String LocationY;    
  43.     @XStreamAlias("Scale")    
  44.     private Long Scale;    
  45.     @XStreamAlias("Label")    
  46.     private String Label;    
  47.     // 链接消息    
  48.     @XStreamAlias("Title")    
  49.     private String Title;    
  50.     @XStreamAlias("Description")    
  51.     private String Description;    
  52.     @XStreamAlias("Url")    
  53.     private String URL;    
  54.     // 语音信息    
  55.     @XStreamAlias("MediaId")    
  56.     private String MediaId;    
  57.     @XStreamAlias("Format")    
  58.     private String Format;    
  59.     @XStreamAlias("Recognition")    
  60.     private String Recognition;    
  61.     // 事件    
  62.     @XStreamAlias("Event")    
  63.     private String Event;    
  64.     @XStreamAlias("EventKey")    
  65.     private String EventKey;    
  66.     @XStreamAlias("Ticket")    
  67.     private String Ticket;    
  68.     
  69.     public String getToUserName() {    
  70.         return ToUserName;    
  71.     }    
  72.     
  73.     public void setToUserName(String toUserName) {    
  74.         ToUserName = toUserName;    
  75.     }    
  76.     
  77.     public String getFromUserName() {    
  78.         return FromUserName;    
  79.     }    
  80.     
  81.     public void setFromUserName(String fromUserName) {    
  82.         FromUserName = fromUserName;    
  83.     }    
  84.     
  85.     public Long getCreateTime() {    
  86.         return CreateTime;    
  87.     }    
  88.     
  89.     public void setCreateTime(Long createTime) {    
  90.         CreateTime = createTime;    
  91.     }    
  92.     
  93.     public String getMsgType() {    
  94.         return MsgType;    
  95.     }    
  96.     
  97.     public void setMsgType(String msgType) {    
  98.         MsgType = msgType;    
  99.     }    
  100.     
  101.     public Long getMsgId() {    
  102.         return MsgId;    
  103.     }    
  104.     
  105.     public void setMsgId(Long msgId) {    
  106.         MsgId = msgId;    
  107.     }    
  108.     
  109.     public String getContent() {    
  110.         return Content;    
  111.     }    
  112.     
  113.     public void setContent(String content) {    
  114.         Content = content;    
  115.     }    
  116.     
  117.     public String getPicUrl() {    
  118.         return PicUrl;    
  119.     }    
  120.     
  121.     public void setPicUrl(String picUrl) {    
  122.         PicUrl = picUrl;    
  123.     }    
  124.     
  125.     public String getLocationX() {    
  126.         return LocationX;    
  127.     }    
  128.     
  129.     public void setLocationX(String locationX) {    
  130.         LocationX = locationX;    
  131.     }    
  132.     
  133.     public String getLocationY() {    
  134.         return LocationY;    
  135.     }    
  136.     
  137.     public void setLocationY(String locationY) {    
  138.         LocationY = locationY;    
  139.     }    
  140.     
  141.     public Long getScale() {    
  142.         return Scale;    
  143.     }    
  144.     
  145.     public void setScale(Long scale) {    
  146.         Scale = scale;    
  147.     }    
  148.     
  149.     public String getLabel() {    
  150.         return Label;    
  151.     }    
  152.     
  153.     public void setLabel(String label) {    
  154.         Label = label;    
  155.     }    
  156.     
  157.     public String getTitle() {    
  158.         return Title;    
  159.     }    
  160.     
  161.     public void setTitle(String title) {    
  162.         Title = title;    
  163.     }    
  164.     
  165.     public String getDescription() {    
  166.         return Description;    
  167.     }    
  168.     
  169.     public void setDescription(String description) {    
  170.         Description = description;    
  171.     }    
  172.     
  173.     public String getURL() {    
  174.         return URL;    
  175.     }    
  176.     
  177.     public void setURL(String uRL) {    
  178.         URL = uRL;    
  179.     }    
  180.     
  181.     public String getEvent() {    
  182.         return Event;    
  183.     }    
  184.     
  185.     public void setEvent(String event) {    
  186.         Event = event;    
  187.     }    
  188.     
  189.     public String getEventKey() {    
  190.         return EventKey;    
  191.     }    
  192.     
  193.     public void setEventKey(String eventKey) {    
  194.         EventKey = eventKey;    
  195.     }    
  196.     
  197.     public String getMediaId() {    
  198.         return MediaId;    
  199.     }    
  200.     
  201.     public void setMediaId(String mediaId) {    
  202.         MediaId = mediaId;    
  203.     }    
  204.     
  205.     public String getFormat() {    
  206.         return Format;    
  207.     }    
  208.     
  209.     public void setFormat(String format) {    
  210.         Format = format;    
  211.     }    
  212.     
  213.     public String getRecognition() {    
  214.         return Recognition;    
  215.     }    
  216.     
  217.     public void setRecognition(String recognition) {    
  218.         Recognition = recognition;    
  219.     }    
  220.     
  221.     public String getTicket() {    
  222.         return Ticket;    
  223.     }    
  224.     
  225.     public void setTicket(String ticket) {    
  226.         Ticket = ticket;    
  227.     }    
  228. }    
  1. package com.dxx.utils;  
  2.   
  3. import com.dxx.function.sdweixin.service.XStreamCDATA;  
  4. import com.dxx.function.sdweixin.vo.ImageMessage;  
  5. import com.thoughtworks.xstream.annotations.XStreamAlias;  
  6.   
  7. @XStreamAlias("xml")    
  8. public class OutputMessage {    
  9.     
  10.     @XStreamAlias("ToUserName")    
  11.     @XStreamCDATA    
  12.     private String ToUserName;    
  13.     
  14.     @XStreamAlias("FromUserName")    
  15.     @XStreamCDATA    
  16.     private String FromUserName;    
  17.     
  18.     @XStreamAlias("CreateTime")    
  19.     private Long CreateTime;    
  20.     
  21.     @XStreamAlias("MsgType")    
  22.     @XStreamCDATA    
  23.     private String MsgType = "text";    
  24.     
  25.     private ImageMessage Image;    
  26.     
  27.     public String getToUserName() {    
  28.         return ToUserName;    
  29.     }    
  30.     
  31.     public void setToUserName(String toUserName) {    
  32.         ToUserName = toUserName;    
  33.     }    
  34.     
  35.     public String getFromUserName() {    
  36.         return FromUserName;    
  37.     }    
  38.     
  39.     public void setFromUserName(String fromUserName) {    
  40.         FromUserName = fromUserName;    
  41.     }    
  42.     
  43.     public Long getCreateTime() {    
  44.         return CreateTime;    
  45.     }    
  46.     
  47.     public void setCreateTime(Long createTime) {    
  48.         CreateTime = createTime;    
  49.     }    
  50.     
  51.     public String getMsgType() {    
  52.         return MsgType;    
  53.     }    
  54.     
  55.     public void setMsgType(String msgType) {    
  56.         MsgType = msgType;    
  57.     }    
  58.     
  59.     public ImageMessage getImage() {    
  60.         return Image;    
  61.     }    
  62.     
  63.     public void setImage(ImageMessage image) {    
  64.         Image = image;    
  65.     }    
  66.     
  67. }    

  1. package com.dxx.function.sdweixin.vo;  
  2.   
  3. import com.thoughtworks.xstream.annotations.XStreamAlias;  
  4.   
  5. @XStreamAlias("Image")    
  6. public class ImageMessage extends MediaIdMessage {    
  7. }   

  1. package com.dxx.function.sdweixin.vo;  
  2.   
  3. import com.dxx.function.sdweixin.service.XStreamCDATA;  
  4. import com.thoughtworks.xstream.annotations.XStreamAlias;  
  5.   
  6. public class MediaIdMessage {    
  7.     @XStreamAlias("MediaId")    
  8.     @XStreamCDATA    
  9.     private String MediaId;    
  10.     
  11.     public String getMediaId() {    
  12.         return MediaId;    
  13.     }    
  14.     
  15.     public void setMediaId(String mediaId) {    
  16.         MediaId = mediaId;    
  17.     }    
  18.     
  19. }    

  1. package com.dxx.function.sdweixin.service;  
  2.   
  3. import java.lang.annotation.ElementType;    
  4. import java.lang.annotation.Retention;    
  5. import java.lang.annotation.RetentionPolicy;    
  6. import java.lang.annotation.Target;    
  7.     
  8. @Retention(RetentionPolicy.RUNTIME)    
  9. @Target({ ElementType.FIELD })    
  10. public @interface XStreamCDATA {    
  11.     
  12. }  
  1. package com.dxx.utils;  
  2.   
  3. public enum  MsgType {  
  4.     Text("text"),    
  5.     Image("image"),    
  6.     Music("music"),    
  7.     Video("video"),    
  8.     Voice("voice"),    
  9.     Location("location"),    
  10.     Link("link");    
  11.     private String msgType = "";    
  12.     
  13.     MsgType(String msgType) {    
  14.         this.msgType = msgType;    
  15.     }    
  16.     
  17.     /**  
  18.      * @return the msgType  
  19.      */    
  20.     @Override    
  21.     public String toString() {    
  22.         return msgType;    
  23.     }    
  24. }  

  1. package com.dxx.utils;  
  2.   
  3. import java.security.MessageDigest;    
  4.   
  5. /**  
  6.  * <p>  
  7.  * Title: SHA1算法  
  8.  * </p>  
  9.  *   
  10.  */    
  11. public final class SHA1 {    
  12.     
  13.     private static final char[] HEX_DIGITS = { '0''1''2''3''4''5''6''7''8''9''a''b''c''d''e''f' };    
  14.     
  15.     /**  
  16.      * Takes the raw bytes from the digest and formats them correct.  
  17.      *   
  18.      * @param bytes  
  19.      *            the raw bytes from the digest.  
  20.      * @return the formatted bytes.  
  21.      */    
  22.     private static String getFormattedText(byte[] bytes) {    
  23.         int len = bytes.length;    
  24.         StringBuilder buf = new StringBuilder(len * 2);    
  25.         // 把密文转换成十六进制的字符串形式    
  26.         for (int j = 0; j < len; j++) {    
  27.             buf.append(HEX_DIGITS[(bytes[j] >> 4) & 0x0f]);    
  28.             buf.append(HEX_DIGITS[bytes[j] & 0x0f]);    
  29.         }    
  30.         return buf.toString();    
  31.     }    
  32.     
  33.     public static String encode(String str) {    
  34.         if (str == null) {    
  35.             return null;    
  36.         }    
  37.         try {    
  38.             MessageDigest messageDigest = MessageDigest.getInstance("SHA1");    
  39.             messageDigest.update(str.getBytes());    
  40.             return getFormattedText(messageDigest.digest());    
  41.         } catch (Exception e) {    
  42.             throw new RuntimeException(e);    
  43.         }    
  44.     }    
  45. }    





第四步:引用maven的包

<dependency>
   <groupId>com.thoughtworks.xstream</groupId>
   <artifactId>xstream</artifactId>
   <version>1.4.9</version>
</dependency>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值