在J2EE中,使用Document对象的()方法,可以得到一个NodeList对象。 A.getDocumentElement方法B.getElementsByTagName方法C.getElementTagName方法D.getElementById方法

在J2EE中,使用Document对象的()方法,可以得到一个NodeList对象。

A.getDocumentElement方法

B.getElementsByTagName方法

C.getElementTagName方法

D.getElementById方法


相关考题:

在J2EE中,JAXP中所提供的更新原始XML文档的方法是调用XSLT引擎,主要和两个类有关,它们是()。 A.Node和Element类B.Document和NodeList类C.TransformerFactory和Transformer类D.TransFactory和Transmer类

在J2EE中,在DOM基本对象中,代表文档树中一个抽象的节点和文档中的标签元素的对象分别是()。 A.Document,NodeB.Node,NodeListC.NodeList,ElementD.Node,Element

在J2EE中,以下关于得到ResultSet对象、PreparedStatement对象、CallableStatement对象的说法,正确的是()。 A.可以使用Statement对象的executeQuery方法返回ResultSet对象B.可以使用Connection对象的createStatement方法获得PreparedStatement对象C.可以使用Connection对象的prepareCall()方法获得CallableStatement对象D.可以使用Connection对象的executeQuery方法返回ResultSet对象

在J2EE中,下列选项中,()可以得到URLConnection对象。 A.使用URL对象的openConnection方法B.使用URLConnection类的静态方法openConnection()方法得到C.使用URL对象的getConnection()方法得到D.使用URLConnection类的静态方法getConnection()方法得到

在J2EE中,JAXP中所提供的更新原始XML文档的方法是调用XSLT引擎,主要和两个类有关,他们是() A.Node和Element类B.Document和NodeList类C.TransformerFactory和Transformer类D.TransFactory和Transmer类

在J2EE中,系列选项中,()可以得到URLCconnection类对象。 A.使用URL对象的openConnection()方法得到B.使用URLConnection类的静态方法openConnection()方法得到C.使用URL对象的getConnection()方法得到D.使用URLConnection类的静态方法getConnection()方法得到

在J2EE中,接受一个XML文档,返回document对象,以分析该XML文档,可以使用如下()方法获得document对象 A.Documentdoc=DocumentBuilderFactory.parse(“my.xml”);B.Documentdoc=DocumentBuilder.parse(“my.xml”);C.DocumentBuilderFactorydbf=DocumentBuilderFactory.newInstance();DocumentBuilder builder=dbf.newDocumentBuilder();Documentdoc=builder.parse(“my.xml”);D.DocumentBuilderbuilder=newDocumentBuilder();Documentdoc=builder.parse(“my.xml”);

在J2EE中,下列选项中,()可以得到URLConnection类对象 A.使用URL对象的openConnection()方法得到B.使用URLConnection类的静态方法openConnection()方法得到C.使用URL对象的getConnection()方法得到D.使用URLConnection类的静态方法getConnection()方法得到

在J2EE中,对XML文档进行转换后,将源DOM树中的数据输出到指定目标流的方法是()。 A.DomResult对象的DomResult方法B.Nodelist对象的toString方法C.Document对象的addDocumenListener方法D.Transformer对象的transform方法