举一反三
- getContentType()方法用于获取头字段___的值,结果为String类型。
- Android中使用openFileOutput(String name,int mode)方法获取到文件输出流。 ( )
- Android中使用openFileOutput(String name,int mode)方法获取到文件输出流时, 第二个参数mode常用模式有()
- 如果不能解析成功,捕获parseInt____方法抛出的NumberFormatException异常
- 【单选题】如果请求消息中有多个指定名称的头字段,则有关getHeader(String name)方法返回值,说法正确的是( ) A. 多个指定名称头字段的一组值 B. 最后一个头字段所对应的值 C. 第一个头字段所对应的值 D. 将返回null
内容
- 0
下面request对象的哪个方法可以获取页面请求中的复选框的值? A: String getParameter(String name) B: String[] getParameter(String name) C: String getParameterValues(String name) D: String[] getParameterValues(String name)
- 1
在HttpServletRequest接口中,用于获取指定名称参数的一组值的方法是( ) A: Object[] getParameterValues(String name) B: String[] getParameterValues(String name) C: String getParameter(Object name) D: String[] getParameters(String name)
- 2
【多选题】数据表的第一列字段名为id,字段类型为int,如何通过ResultSet接口方法获取字段值() A. 使用getInt(1)获取该列的值 B. 使用getInt(“id”)获取该列的值 C. 使用getObject(“id”)获取该列的值 D. 使用getObject(1)获取该列的值
- 3
hive里创建表test,表里添加两个字段id和name,以下哪个HQL是正确的( ) A: create test(id int, name string); B: create test(int id, string name); C: create table test(int id, string name); D: create table test(id int, name string)
- 4
下面哪个方法用于从ServletContent中检索属性值?() A: String getAttribute(int index ) B: String getObject(int index ) C: Object getAttribute(int index ) D: Object getObject(int index ) E: Object getAttribute(String name ) F: String getAttribute(String name )