下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、命令方式對查詢進(jìn)行排序D:utrustsysteminstalledOpenLDAP>ldapsearch -x -h localhost -D "uid=admin,ou=person,ou=utrust,dc=chinautrust,dc=com" -b "ou=person,ou=utrust,dc=chinautrust,dc=com" -w "admin" -S "uidaleph"LDAP分頁和排序(JDK自帶)import com.sun.jndi.ldap.ctl.VirtualListVie
2、wControl;import java.io.IOException;import java.util.Hashtable;import javax.naming.Context;import javax.naming.NamingEnumeration;import javax.naming.NamingException;import javax.naming.directory.SearchControls;import javax.naming.directory.SearchResult;import javax.naming.ldap.Control;import javax.n
3、aming.ldap.HasControls;import javax.naming.ldap.InitialLdapContext;import javax.naming.ldap.LdapContext;import javax.naming.ldap.SortControl;public class SortLDAP public static void main(String args) throws NamingException, IOException Hashtable m_env = new Hashtable(5, 0.75f); m_env.put(Context.INI
4、TIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory"); /m_env.put("java.naming.ldap.version", "3"); m_env.put(Context.PROVIDER_URL, "ldap:/11:389"); m_env.put(Context.SECURITY_AUTHENTICATION, "simple"); m_env.put(Context.SECURITY_PRINC
5、IPAL, "cn=Directory Manager"); m_env.put(Context.SECURITY_CREDENTIALS, "password12345"); / Open an LDAP association LdapContext ctx = new InitialLdapContext(m_env, null); / Activate sorting String sortKey = "uid" int beforeCount = 0; int afterCount = 0; int nTargetOffse
6、t = 0; int nPageSize = 5; VirtualListViewControl vctl = new VirtualListViewControl(nTargetOffset, beforeCount, afterCount, nPageSize, Control.CRITICAL); ctx.setRequestControls(new Controlnew SortControl(sortKey, Control.CRITICAL),vctl); String retAtt = "uid" SearchControls constraints = ne
7、w SearchControls(); constraints.setSearchScope(SearchControls.SUBTREE_SCOPE); constraints.setReturningAttributes(retAtt); / ctx.setRequestControls(new Controlnew PagedResultsControl(2); / Perform a search NamingEnumeration results = ctx.search("ou=person,ou=utrust,dc=chinautrust,dc=com", &
8、quot;(objectclass=*)", constraints); / Iterate over search results while (results != null && results.hasMore() / Display an entry SearchResult entry = (SearchResult) results.next(); System.out.println(entry.getAttributes(); / Handle the entry's response controls (if any) if (entry i
9、nstanceof HasControls) / (HasControls)entry).getControls(); / Close the LDAP association ctx.close(); LDAP數(shù)據(jù)排序(netscape包)import netscape.ldap.LDAPCompareAttrNames;import netscape.ldap.LDAPConnection;import netscape.ldap.LDAPEntry;import netscape.ldap.LDAPException;import netscape.ldap.LDAPReferralEx
10、ception;import netscape.ldap.LDAPSearchResults;import netscape.ldap.util.ConnectionPool;public class LdapUtils private static final String HOST = "localhost" private static final int PORT = 389; private static final int MIN_CONN_SIZE = 1; private static final int MAX_CONN_SIZE = 5; private
11、 static final String USER_ID = "cn=Manager,dc=chinautrust,dc=com" private static final String PASSWORD = "password12345" private static ConnectionPool connPool; static try connPool = new ConnectionPool(MIN_CONN_SIZE, MAX_CONN_SIZE, HOST, PORT); catch (LDAPException e) String mess
12、age = "Failed to init Ldap connection pool" System.out.println(message); public static ConnectionPool getConnectionPool() return LdapUtils.connPool; public static LDAPConnection getConnection() LDAPConnection conn = LdapUtils.getConnectionPool().getConnection(); try conn.authenticate(USER_
13、ID, PASSWORD); catch (LDAPException e) String message = "Failed to authen the system ldap user" System.out.println(message); return conn; public static void closeConnection(LDAPConnection conn) LdapUtils.getConnectionPool().close(conn); public static void main(String args) throws Exception
14、 LDAPConnection con = LdapUtils.getConnection(); String ATTRS = "uidaleph" LDAPSearchResults res = con.search("ou=person,ou=utrust,dc=chinautrust,dc=com",LDAPConnection.SCOPE_SUB,"uid=*",ATTRS,false); LDAPCompareAttrNames compareAttrNames = new LDAPCompareAttrNames(&quo
15、t;uidaleph", true); res.sort(compareAttrNames); while (res.hasMoreElements() try / Next directory entry LDAPEntry entry = res.next(); System.out.println(entry); catch (LDAPReferralException e) / Ignore referrals continue; catch (LDAPException e) System.out.println(e.toString(); continue; System.out.println("-"); 總結(jié)1、PagedResultsControl分頁處理即ctx.setRequestControls(new Controlnew SortControl(sortK
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 屆九年級信息技術(shù)下冊 第2課《機(jī)器人的編程系統(tǒng)》教學(xué)實(shí)錄 川教版
- 七年級生物上冊 第三單元 第五章 第二節(jié)《綠色植物的呼吸作用》教學(xué)實(shí)錄 (新版)新人教版
- 第一單元、第二單元前4課(教學(xué)實(shí)錄)-2023-2024學(xué)年三年級下冊科學(xué) 教科版
- 交通安全演講稿(匯編15篇)
- 2024年秋七年級地理上冊 第四章 世界的氣候 4.4《世界主要?dú)夂蝾愋汀方虒W(xué)實(shí)錄2 (新版)湘教版
- 九年級化學(xué)教學(xué)計(jì)劃錦集5篇
- 乒乓球比賽的作文600字合集九篇
- 2024年版中國石油天然氣購銷合同
- 愛與責(zé)任教師精彩演講稿
- 國旗下的講話學(xué)生演講稿內(nèi)容
- DB45T 2760-2023 電子政務(wù)外網(wǎng)網(wǎng)絡(luò)技術(shù)規(guī)范
- 2025版中考物理復(fù)習(xí)課件 09 專題五 類型3 電學(xué)綜合應(yīng)用題(不含效率)(10年6考)
- 2024年度承包合同:石灰石生產(chǎn)線承包2篇
- 2024年度社區(qū)養(yǎng)老社會工作服務(wù)項(xiàng)目協(xié)議書3篇
- 蜜雪冰城合作加盟合同
- 青海省西寧市2021-2022學(xué)年八年級上學(xué)期期末歷史試題(解析版)
- 2024統(tǒng)編版七年級上冊語文期末復(fù)習(xí):名著閱讀 練習(xí)題匯編(含答案解析)
- 2024年物業(yè)管理員(中級)職業(yè)鑒定考試題庫(含答案)
- 統(tǒng)編版(2024版)七年級上冊歷史:期末復(fù)習(xí)課件
- 國開(陜西)2024年《中國制造之高端裝備》形考作業(yè)1-4答案
- 工會新聞寫作培訓(xùn)課題
評論
0/150
提交評論