⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 shared.java

📁 it contains the practical programs in our college
💻 JAVA
字号:
import javax.naming.*;import javax.naming.directory.*;import java.util.Hashtable;/** * Shows contexts that share the same connection. * * usage: java Shared */class Shared {    public static void main(String[] args) {	// Set up environment for creating initial context        Hashtable<String, Object> env = new Hashtable<String, Object>(11);	env.put(Context.INITIAL_CONTEXT_FACTORY, 	    "com.sun.jndi.ldap.LdapCtxFactory");	env.put(Context.PROVIDER_URL, "ldap://localhost:389/o=JNDITutorial");	try {	    // Create initial context	    DirContext ctx = new InitialDirContext(env);	    // Get a copy of the same context	    Context ctx2 = (Context)ctx.lookup("");	    // Get a child context	    Context ctx3 = (Context) ctx.lookup("ou=NewHires");	    // do something useful with ctx, ctx2, ctx3	    // Close the contexts when we're done	    ctx.close();	    ctx2.close();	    ctx3.close();	} catch (NamingException e) {	    e.printStackTrace();	}    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -