257258259260261262263264265266267
System.err.print("连接异常! "); e.printStackTrace(); } finally { if (lc != null && lc.isConnected()) { try { lc.disconnect(); } catch (LDAPException e) { System.err.print("连接异常! 1" + e.toString()); } } }
246247248249250251252253254255256