java 获取AD域下用户数据

话不多说,上代码

使用的依赖jar有两个(ldapbp-1.0.jar,spring-ldap-core-2.3.2.RELEASE.jar)

	import javax.naming.AuthenticationException;
    import javax.naming.Context;
    import javax.naming.NamingEnumeration;
    import javax.naming.NamingException;
    import javax.naming.directory.Attribute;
    import javax.naming.directory.Attributes;
    import javax.naming.directory.DirContext;
    import javax.naming.directory.InitialDirContext;
    import javax.naming.directory.SearchControls;
    import javax.naming.directory.SearchResult;

    /**
	 * 使用java连接AD域,获取域账号信息
	 * 
	 * @return 域账户List
	 * @throws
	 * @param url 连接AD域服务器的url,ip + 端口号(默认389)
	 * @param username AD域用户名
	 * @param password 用户密码
	 */
	private List connect(String url, String username, String password) {
		List> userList = new ArrayList>();
		DirContext ctx = null;
		Hashtable HashEnv = new Hashtable();
		HashEnv.put(Context.SECURITY_AUTHENTICATION, "simple"); // LDAP访问安全级别(none,simple,strong)
		HashEnv.put(Context.SECURITY_PRINCIPAL, username); // AD的用户名
		HashEnv.put(Context.SECURITY_CREDENTIALS, password); // AD的密码
		HashEnv.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory"); // LDAP工厂类
		HashEnv.put("com.sun.jndi.ldap.connect.timeout", "20000");// 连接超时设置为20秒
		HashEnv.put(Context.PROVIDER_URL, "ldap://" + url);
		try {
			ctx = new InitialDirContext(HashEnv);// 初始化上下文
			System.out.println("身份验证成功!");
			// 域节点
			String searchBase = "DC=xxx,DC=cn";
			// LDAP搜索过滤器类
			String searchFilter = "(&(objectCategory=person)(sn=*xxxx*))"; // 查询用户,同时可以添加自己需要的查询条件,*代表模糊查询,跟sql中like一样
			// 创建搜索控制器
			SearchControls searchCtls = new SearchControls();
			// 设置搜索等级
			searchCtls.setSearchScope(SearchControls.SUBTREE_SCOPE); // Specify
			//displayName名称(name),sAMAccountName登录名称(id),Department部门,Mail邮箱
			String returnedAtts[] = { "displayName", "sAMAccountName","Department","Mail"};// 定制返回属性,还有很多属性,可自行百度
			searchCtls.setReturningAttributes(returnedAtts); // 设置返回属性集
			// 根据设置的域节点、过滤器类和搜索控制器搜索LDAP得到结果
			NamingEnumeration answer = ctx.search(searchBase, searchFilter, searchCtls);// 根据过滤条件查找数据
			while (answer.hasMoreElements()) {// 遍历结果集
				SearchResult sr = (SearchResult) answer.next();
				Attributes Attrs = sr.getAttributes();// 得到域用户属性集
				if (Attrs != null) {
					try {
						Map m = new HashMap();
						for (NamingEnumeration ne = Attrs.getAll(); ne.hasMore();) {
							Attribute Attr = (Attribute) ne.next();// 得到下一个属性
							String key = Attr.getID().toString();
							// 读取属性值
							for (NamingEnumeration e = Attr.getAll(); e.hasMore();) {
								String value= e.next().toString();
								m.put(key, value);
							}
						}
						userList.add(m);
					} catch (NamingException e) {
						System.err.println("Throw Exception : " + e);
					}
				}
				ctx.close();
			}
			
//			for (int i = 0; i < userList.size(); i++) {
//				Map m = userList.get(i);
//				for(Map.Entry entry : m.entrySet()){
//				    String mapKey = entry.getKey();
//				    String mapValue = entry.getValue();
//				    System.out.println("第"+(i+1)+"个用户key = "+mapKey+" , value = "+mapValue);
//				}
//				System.out.println("-----------------------------");
//			}
		} catch (AuthenticationException e) {
			System.out.println("身份验证失败!");
			e.printStackTrace();
		} catch (javax.naming.CommunicationException e) {
			System.out.println("AD域连接失败!");
			e.printStackTrace();
		} catch (Exception e) {
			System.out.println("身份验证未知异常!");
			e.printStackTrace();
		} finally {
			if (null != ctx) {
				try {
					ctx.close();
					ctx = null;
				} catch (Exception e) {
					e.printStackTrace();
				}
			}
		}
		return userList;
	}

 

你可能感兴趣的:(个人成长,java,ldap)