编写代码
private static final String DNS = "dns://";
public static void main(String[] args) throws Exception{
Hashtable<String, String> env = new Hashtable<String, String>();
env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.dns.DnsContextFactory");
env.put(Context.PROVIDER_URL, DNS);
InitialDirContext ctx = new InitialDirContext(env);
Attributes attributes = ctx.getAttributes("qq.com", new String[]{"MX"});
System.out.println(attributes );
}
结果如下
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。