A.自省是JavaBeans提供的accessor方法,即"get"和"set"方法来获取和设置属性的值 B.持续化是指JavaBean有个同步的方法,也即方法有synchronized关键字 C.组件和容器是自包含的程序,容器是包含其它组件的组件,它们被用作组件的框架 D.定制是指在开发之初使用UML工具做出JavaBean的class图,然后根据class图设计JavaBean
单项选择题在J2EE中,用JAXP转化XML文档,可以创建输出流把数据输出到屏幕上,以下创建该输出流的代码是()。
A.Stream result = stream.newStream(System.out); B.StreamResult result = new StreamResult(System.out); C.Stream result = new Stream(System.out); D.StreamResult result = DOMSource.newStreamResult(System.out);
单项选择题在J2EE中,JAXP中所提供的更新原始XML文档的方法是调用XSLT引擎,主要和两个类有关,它们是()。
A.Node和Element类 B.Document和NodeList类 C.TransformerFactory和Transformer类 D.TransFactory和Transmer类
多项选择题在J2EE中,使用()选项中的代码,可以生成如下XML文档: <PEOPLE> <PERSON> <NAME>Tony Blair< NAME> < PERSON> <PEOPLE>
A.Element people = doc.createElement("PEOPLE"); Element person = doc.createElement("PERSON"); Element name = doc.createElement("NAME"); name.appendChild(doc.createTextNode("Tony Blair")); people.appendChild(person); person.appendChild(name); doc.appendChild(people); B.Element people = doc.createElement("PEOPLE"); Element person = doc.createElement("PERSON"); people.appendChild(person); Element name = doc.createElement("NAME"); name.appendChild(doc.createTextNode("Tony Blair")); person.appendChild(name); doc.appendChild(people); C.Element people = doc.createElement("PEOPLE"); Element person = doc.createElement("PERSON"); people.appendChild(person); Element name = doc.createElement("NAME"); name.appendText(doc.createTextNode("Tony Blair")); person.appendChild(name); doc.appendChild(people); D.Element people = doc.createElement("PEOPLE"); Element person = doc.createElement("PERSON");Element name = doc.createElement("NAME"); name.createTextNode("Tony Blair"); people.appendChild(person); person.appendChild(name); doc.appendChild(people);
单项选择题在J2EE中,以下代码()能正确的创建了SAX解析器对象。
A.SAXParser saxParser = SAXParserFactory.newSAXParser(); B.SAXParser saxParser = SAXParserFactory.newInstance().newSAXParser(); C.SAXParser saxParser = SAXParser. newInstance (); D.SAXParser saxParser = new SAXParser();
单项选择题在J2EE中,假设sample.xml文档有一个元素是,它有个子元素是。我们已经获得了Document对象doc,取出第一个的第一个子元素的值的代码是()。
A.((Element)doc.getElementsByTagName("PERSON").item(0)).getNodeValue(); B.((Element)doc.getElementsByTagName("PERSON").item(0)).getElementsByTagName("NAME").item(0).getFirstChild().getNodeValue(); C.((Element)doc.getElementsByTagName("PERSON").item(0)).getElementsByTagName("NAME").item(0).getNodeValue(); D.((Element)doc.getElementsByTagName("PERSON").item(0)).item(0).getNodeValue();