单项选择题
A.使用URL对象的openConnection()方法得到 B.使用URLConnection类的静态方法openConnection()方法得到 C.使用URL对象的getConnection()方法得到 D.使用URLConnection类的静态方法getConnection()方法得到
下面代码 在J2EE中,aa.jsp文件如下 <%! Starci int I=0; int j=0;...
下面代码 在J2EE中,aa.jsp文件如下 <%! Starci int I=0; int j=0;%> <html> <body> <% for ( ; I++<2;) method_ { out.pringt(j++) ; out.print(“ ”);} %> </body> </html> <%! i="0;" int="" j="0;%" starci="">
<% for="" method_="" />{ out.pringt(j++) ; out.print(“ ”);} %> 有两个客户依次使用浏览器浏览aa.jsp,且每个客户只浏览aa.jsp依次, 那么第二个客户看到浏览器显示()。
A. 0 1 B. 1 2 C. 3 4 D.5 6 E. 什么也没有
在J2EE中,对于ResultSet接口中的getInt方法,参数可以是()A.布尔型B.整型C.字符串型D....
多项选择题在J2EE中,对于ResultSet接口中的getInt方法,参数可以是()
A.布尔型 B.整型 C.字符串型 D.浮点型
在J2EE中,URL类代表了统一资源定位器,如果要使用“http://www.sina.com.cn/inde...
多项选择题在J2EE中,URL类代表了统一资源定位器,如果要使用 “http://www.sina.com.cn/index.html”生成URL对象,可以按照如下的()造该对象。
A.URL url=new URL("http","www.sina.com.cn/index.html",80); B.URL url=new URL("http://www.sina.com.cn/index.html"); C.URL url=new URL("http","www.sina.com.cn",80,"index.html"); D.Url url=new URL("http","www.sina.com.cn/index.html");