本文整理了Java中com.meterware.httpunit.WebRequest.getParameterValues()
方法的一些代码示例,展示了WebRequest.getParameterValues()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebRequest.getParameterValues()
方法的具体详情如下:
包路径:com.meterware.httpunit.WebRequest
类名称:WebRequest
方法名:getParameterValues
[英]Returns the multiple default values of the named parameter.
[中]返回命名参数的多个默认值。
代码示例来源:origin: httpunit/httpunit
/**
* Returns the value of a parameter in this web request.
* @return the value of the named parameter, or empty string
* if it is not set.
**/
public String getParameter( String name ) {
String[] values = getParameterValues( name );
return values.length == 0 ? "" : values[0];
}
代码示例来源:origin: javanettasks/httpunit
/**
* Returns the value of a parameter in this web request.
* @return the value of the named parameter, or empty string
* if it is not set.
**/
public String getParameter( String name ) {
String[] values = getParameterValues( name );
return values.length == 0 ? "" : values[0];
}
代码示例来源:origin: org.kohsuke.httpunit/httpunit
/**
* Returns the value of a parameter in this web request.
* @return the value of the named parameter, or empty string
* if it is not set.
**/
public String getParameter( String name ) {
String[] values = getParameterValues( name );
return values.length == 0 ? "" : values[0];
}
内容来源于网络,如有侵权,请联系作者删除!