java微信企业号开发之通讯录_java

上篇文章中介绍了聊天功能,这里介绍通讯录是如何实现的。首先要加载公司的所有部门,树形结构,然后点击进入部门的人员列表,点击人员能查看详细信息。 

一、界面

公司部门的树形结构:

部门成员列表: 

个人详细信息: 

二、代码实现
1.controller 

  /**
 * 加载部门列表
 */
 @RequestMapping("/addressListDepartmentjsp.do")
 public void addressListDepartment(HttpServletRequest request, HttpServletResponse response) throws IOException{
 request.setCharacterEncoding("utf-8");
 response.setCharacterEncoding("utf-8");

  List<JsonTree> jsList = addressListService.getTree();
  JSONArray jsonArray = JSONArray.fromObject(jsList);
  PrintWriter out = response.getWriter();
  out.print(jsonArray);
 }

 /**
 * 加载部门成员列表
 */
 @RequestMapping("/addressListUserList.do")
 public String addressListuserList(HttpServletRequest request,HttpServletResponse response) throws UnsupportedEncodingException{
 request.setCharacterEncoding("utf-8");
 response.setCharacterEncoding("utf-8");
 String deptId=request.getParameter("Departmentid");
 String d=request.getParameter("departmentName");
 String departmentName = new String(d.getBytes("ISO-8859-1"),"utf-8");
 List<UserDetail> userDetail = addressListService.getUserDetail(deptId);

 request.setAttribute("userDetail", userDetail);
 request.setAttribute("departmentName", departmentName);
 return "addressListUserList";
 }

 /**
 * 查看员工详细信息
 */
 @RequestMapping("/addressListUserInfo.do")
 public String addressListuserInfo(HttpServletRequest request,HttpServletResponse response) throws UnsupportedEncodingException{
 request.setCharacterEncoding("utf-8");
 response.setCharacterEncoding("utf-8");

 String n=request.getParameter("name");
 String name = new String(n.getBytes("ISO-8859-1"),"utf-8");
 String mobile=request.getParameter("mobile");
 String email=request.getParameter("email");
 String weixinid=request.getParameter("weixinid");
 String avatar=request.getParameter("avatar");
 String d=request.getParameter("departmentName");
 String departmentName = new String(d.getBytes("ISO-8859-1"),"utf-8");
 request.setAttribute("name", name);
 request.setAttribute("mobile", mobile);
 request.setAttribute("email",email);
 request.setAttribute("weixinid", weixinid);
 request.setAttribute("avatar", avatar);
 request.setAttribute("departmentName", departmentName);

 return "addressListUserInfo";
 }

2.serviceImpl

 /**
 * 加载部门列表
 */
 public List<JsonTree> getTree(){
 //1.先获取token
 String accessToken = CommonUtil.getAccessToken("wxe510946434680dab", "eWTaho766INvp4e1MCsz1mHYuT2DAleb62REQ3vsFizhY4vtmwZpKweuxUVh33G0").getAccessToken();
 //2.获取部门列表
 List<Department> departmentList = AdvancedUtil.getDepartment(accessToken);
 //根据部门列表转换为页面需要的格式
 List<JsonTree> jsList = this.convertList(departmentList);
 return jsList;
 }

 /**
 * 转为ZTree的格式
 */
 public List<JsonTree> convertList( List<Department> departmentList)
 {
  List<JsonTree> rootNode = new ArrayList<JsonTree>();

  for (int i = 0; i < departmentList.size(); i++) {
   for (int j = i+1; j <departmentList.size(); j++) {
   if (departmentList.get(i).getId()==departmentList.get(j).getParentid()) {
  JsonTree jt = new JsonTree();
  jt.setId(departmentList.get(i).getId());
  jt.setName(departmentList.get(i).getName());
  jt.setpId(departmentList.get(i).getParentid());
  jt.setOpen(false);
  jt.setUrl("");
  rootNode.add(jt);
  break;
 }else {
  JsonTree jt = new JsonTree();
  jt.setId(departmentList.get(i).getId());
  jt.setName(departmentList.get(i).getName());
  jt.setpId(departmentList.get(i).getParentid());
  jt.setOpen(false);
  jt.setUrl("addressListUserList.do?Departmentid="+departmentList.get(i).getId()+"&departmentName="+departmentList.get(i).getName());

  rootNode.add(jt);
  break;
 }
 }

 }
  return rootNode;
 }

 /**
 * 加载部门成员列表
 */
 public List<UserDetail> getUserDetail(String deptId){
 //1.先获取token
 String accessToken = CommonUtil.getAccessToken("wxe510946434680dab", "eWTaho766INvp4e1MCsz1mHYuT2DAleb62REQ3vsFizhY4vtmwZpKweuxUVh33G0").getAccessToken();

 //2.根据部门id和token的值获取部门成员列表
 List<UserDetail> userDetail = AdvancedUtil.getUserDetail(accessToken, deptId);

 return userDetail;
 }

3.工具类

//获取部门列表
public static List<Department> getDepartment(String accessToken) {
 List<Department> departmentList = null;
 // https://qyapi.weixin.qq.com/cgi-bin/department/list?access_token=ACCESS_TOKEN
 String requestUrl = "https://qyapi.weixin.qq.com/cgi-bin/department/list?access_token=ACCESS_TOKEN";
 requestUrl = requestUrl.replace("ACCESS_TOKEN", accessToken);

 JSONObject jsonObject = CommonUtil.httpsRequest(requestUrl, "GET", null);

 if (null != jsonObject) {
 try {
 departmentList = JSONArray.toList(jsonObject.getJSONArray("department"), Department.class);
 } catch (JSONException e) {
 departmentList = null;
 int errorCode = jsonObject.getInt("errcode");
 String errorMsg = jsonObject.getString("errmsg");

 }
 }
 return departmentList;
 }//获取部门成员详情
public static List<UserDetail> getUserDetail(String accessToken,String departmentId){
 List<UserDetail> userDetail = null;
 String requestUrl = "https://qyapi.weixin.qq.com/cgi-bin/user/list?access_token=ACCESS_TOKEN&department_id=DEPARTMENT_ID&fetch_child=1&status=0";
 requestUrl = requestUrl.replace("ACCESS_TOKEN", accessToken).replace("DEPARTMENT_ID", departmentId);

 JSONObject jsonObject = CommonUtil.httpsRequest(requestUrl, "GET", null);

 if (null != jsonObject) {
 try {
 userDetail = JSONArray.toList(jsonObject.getJSONArray("userlist"),UserDetail.class);
 } catch (JSONException e) {
 userDetail = null;
 int errorCode = jsonObject.getInt("errcode");
 String errorMsg = jsonObject.getString("errmsg");

 }
 }
 return userDetail;
 }

4.js 

<script type="text/javascript">
 var curMenu = null, zTree_Menu = null;
 var setting = {
 view: {
 showLine: false,
 showIcon: false,
 selectedMulti: false,
 dblClickExpand: false,
  addDiyDom: addDiyDom
 },
 data: {
 simpleData: {
  enable: true
 }
 },
 callback: {
 beforeClick: beforeClick
 }
 };
 var zNodes = null;
 $.ajax({
 type : "post",
  async: false,
 url :"addressListDepartmentjsp.do",
 success : function(data) {
 zNodes = eval('(' + data + ')');
 },
 error : function(data) { 

 }
 });

 function addDiyDom(treeId, treeNode) {
 var spaceWidth = 5;
 var switchObj = $("#" + treeNode.tId + "_switch"),
 icoObj = $("#" + treeNode.tId + "_ico");
 switchObj.remove();
 icoObj.before(switchObj);

 if (treeNode.level > 1) {
 var spaceStr = "<span style='display: inline-block;width:" + (spaceWidth * treeNode.level)+ "px'></span>";
 switchObj.before(spaceStr);
 }
 }

 function beforeClick(treeId, treeNode) {
  var str ='' ;
 str = getAllChildrenNodes(treeNode,str);
 if (str.substr(0,1)==',') str=str.substr(1);
 if(str!=""){
 treeNode.url="";
 var zTree = $.fn.zTree.getZTreeObj("treeDemo");
 zTree.expandNode(treeNode);
 return false;
 }
 if(str==""){

 }
 return true;
 }

// 张晓 朱丹
 function getAllChildrenNodes(treeNode,result){
 //var strResult=result;
 if (treeNode.isParent) {
 var childrenNodes = treeNode.children;
 if (childrenNodes) {
  for (var i = 0; i < childrenNodes.length; i++) {
  result += ',' + childrenNodes[i].id;
  }
 }
 }
 return result;
 }
 $(document).ready(function(){
 var treeObj = $("#treeDemo");
 $.fn.zTree.init(treeObj, setting, zNodes);
 zTree_Menu = $.fn.zTree.getZTreeObj("treeDemo");
 curMenu = zTree_Menu.getNodes()[0].children[0].children[0];
 zTree_Menu.selectNode(curMenu);

 treeObj.hover(function () {
 if (!treeObj.hasClass("showIcon")) {
  treeObj.addClass("showIcon");
 }
 }, function() {
 treeObj.removeClass("showIcon");
 });
 });
 </script>
 <style type="text/css">
 .ztree * {font-size: 13pt;font-family:"Microsoft Yahei",Verdana,Simsun,"Segoe UI Web Light","Segoe UI Light","Segoe UI Web Regular","Segoe UI","Segoe UI Symbol","Helvetica Neue",Arial}
 .ztree li ul{ margin:0; padding:0}
 .ztree li {line-height:30px;}
 .ztree li a {width:100%;height:30px;padding-top: 0px;border-bottom:1px #EEEEEE solid}
 .ztree li a:hover {text-decoration:none; background-color: #E7E7E7;}
/* .ztree li a span.button.switch {visibility:hidden} */
 .ztree.showIcon li a span.button.switch {visibility:visible}
 .ztree li a.curSelectedNode {background-color:#D4D4D4;border:0;height:30px;}
 .ztree li span {line-height:30px;}
 .ztree li span.button {margin-top: -7px;}
 .ztree li span.button.switch {width: 16px;height: 16px;}

 .ztree li a.level0 span {font-size: 150%;font-weight: bold;}
 .ztree li span.button {background-image:url("images/left_menuForOutLook.png"); *background-image:url("./left_menuForOutLook.gif")}
 .ztree li span.button.switch.level0 {width: 20px; height:20px}
 .ztree li span.button.switch.level1 {width: 20px; height:20px}
 .ztree li span.button.noline_open {background-position: 0 0;}
 .ztree li span.button.noline_close {background-position: -18px 0;}
 .ztree li span.button.noline_open.level0 {background-position: 0 -18px;}
 .ztree li span.button.noline_close.level0 {background-position: -18px -18px;}
 </style>
 </head>

 <body>
 <div data-role="page" id="UserMain">
 <div class="content_wrap" style="width:96%;height:98%;margin-left: auto;margin-right: auto;" >
 <div class="zTreeDemoBackground left" style="width:100%;height:98%;" >
 <ul id="treeDemo" class="ztree" style="width:98%;height:98%;" ></ul>
 </div>
 </div>
 <span id="zNodes"></span>
 </div>
 </body>

三、总结
通讯录功能并没有想象中的难,树结构采用ztree框架,后台查到的数据必须转换为ztree定义的名称,然后部门成员列表的显示和查询用到jquery mobile,在以后的文章中再介绍这种js的使用,从名字上就知道它是专门为手机页面开发的。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索java
, 微信
通讯录
微信企业号通讯录开发、java微信企业号开发、用java开发微信企业号、微信企业号同步通讯录、企业号微信通讯录,以便于您获取更多的相关知识。

时间: 2024-10-04 01:35:39

java微信企业号开发之通讯录_java的相关文章

java微信企业号开发之开发模式的开启_java

首先说微信企业号的开发模式分为:编辑模式(普通模式)和开发模式(回调模式) ,在编辑模式下,只能做简单的自定义菜单和自动回复消息,要想实现其他功能还得开启开发者模式. 一.编辑模式和开发模式对消息的处理流程  1.编辑模式下,所有的业务流程都配置在微信服务器上,由它处理   2.开发模式,消息通过第三方服务器处理,最后经过微信服务器把消息发送给用户   开发模式能处理的消息比编辑模式多,所以要先开启开发模式才能开发更多功能. 二.开发模式的开启      在回调模式下,企业不仅可以主动调用企业号

java微信企业号开发之发送消息(文本、图片、语音)_java

上篇文章介绍了开启回调模式,开始回调模式后我们就要实现聊天功能了.平时使用微信聊天可以发送文本消息.语音.图片.视频等,这里只实现了其中的一些功能和大家分享.  一.与微信企业号建立连接1.企业应用调用企业号提供的接口,管理或查询企业号后台所管理的资源.或给成员发送消息等,以下称主动调用模式. 2.企业号把用户发送的消息或用户触发的事件推送给企业应用,由企业应用处理,以下称回调模式. 3.用户在微信中阅读企业应用下发的H5页面,该页面可以调用微信提供的原生接口,使用微信开放的终端能力,以下称JS

微信企业号开发 回调模式

问题描述 微信企业号开发 回调模式 微信企业开发 回调模式 加密的随机字符串(echostr)为空,求解决办法??????然而其它参数有值???不知道是哪里的原因-求解 解决方案 php 微信企业号回调模式开发微信企业号开发:启用回调模式微信企业号开发之开启回调模式 解决方案二: 检查下加密代码正确,请求路径正确否?

微信企业号开发之微信考勤百度地图定位_javascript技巧

之前在微信企业号开发:微信考勤中使用了百度地图的定位组件,但发现在部分手机上会出现定位失败的提示,于是有研究了一下百度地图.原来使用的Web组件百度不打算更新了,也是重新查了一下百度地图的其他API,还有一个JavaScript API大众版,于是试了试,没想到竟然解决了. 核心代码很简单: <div id="allmap"></div> <script type="text/javascript" src="http://a

微信公众号开发系列-微信企业号开发相关参数

微信企业号出来之后,本人也抱着前面开发订阅号和服务号的经验来探究了一番,这里整理了下再开发企业号时候碰到的一些接口参数.企业号开发文档详见http://qydev.weixin.qq.com/wiki/index.php?title=首页 1.创建自定义菜单参数解释: 菜单管理的创建操作,官方定义如下所示. 请求说明 Https请求方式: POST https://qyapi.weixin.qq.com/cgi-bin/menu/create?access_token=ACCESS_TOKEN&

集成代码生成器 java 微信 自定义菜单 java微信接口开发 公众平台 SSM redis shiro 多数据源

获取[下载地址]  QQ: 313596790A 调用摄像头拍照,自定义裁剪编辑头像,头像图片色度调节B 集成代码生成器 [正反双向](单表.主表.明细表.树形表,快速开发利器)+快速表单构建器 freemaker模版技术 ,0个代码不用写,生成完整的一个模块,带页面.建表sql脚本,处理类,service等完整模块C 集成阿里巴巴数据库连接池druid  数据库连接池  阿里巴巴的 druid.Druid在监控.可扩展性.稳定性和性能方面都有明显的优势D 集成安全权限框架shiro  Shir

微信企业号 根据错误码返回错误信息类封装_java

微信企业号根据错误码返回错误信息类封装 微信开发中返回错误码每次需要查询错误返回码文档才知道具体的错误信息(查看返回的errormsg也可知道),因此封装一个 错误码返回的类来查看! 纯粹的体力劳动!!! <span style="font-size:14px;">package org.oms.wechat.utils; /** * 企业号根据错误码返回错误信息类 * @author sunlight * */ public class ErrorCodeText { p

微信企业号验证/发送/接收消息_java

1. 内网映射 由于微信企业号回调模式的URL尽支持域名方式访问,估需要注册花生壳,做一个内网穿透(需要花16块钱,购买一个免费版,购买之后,第二天才能添加上域名) 2. 微信企业号 注册微信企业号:https://qy.weixin.qq.com/ (选择团队,团队不需要认证) 通讯录:新建组织 - > 关注成员 企业号 -> 应用中心 -> 新建应用 -> 消息型应用 -> 模式选择(回调模式) -> 开启微信消息转发, 回调模式说明:http://qydev.we

java-微信企业号开发,主动调用如何发送消息,最好有源码,谢谢!

问题描述 微信企业号开发,主动调用如何发送消息,最好有源码,谢谢! 请问应用主动调用如何发送消息,调研了很长时间,请各位大神指教 解决方案 自己已经解决,谢谢各位 解决方案二: 微信企业号开发:主动发送消息微信开发 获取Token.主动给企业成员发送消息微信企业号,发送消息---------------------- 解决方案三: 看下机器人回复的. 没明白你的主动发送消息是定时发送还是?