org.apache.commons.httpclient.HttpURL.getRawUser()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(7.7k)|赞(0)|评价(0)|浏览(85)

本文整理了Java中org.apache.commons.httpclient.HttpURL.getRawUser()方法的一些代码示例,展示了HttpURL.getRawUser()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HttpURL.getRawUser()方法的具体详情如下:
包路径:org.apache.commons.httpclient.HttpURL
类名称:HttpURL
方法名:getRawUser

HttpURL.getRawUser介绍

[英]Get the raw-escaped user.
[中]获取原始转义用户。

代码示例

代码示例来源:origin: commons-httpclient/commons-httpclient

/**
 * Get the escaped user
 *
 * @return the escaped user
 */
public String getEscapedUser() {
  char[] user = getRawUser();
  return (user == null) ? null : new String(user);
}

代码示例来源:origin: commons-httpclient/commons-httpclient

/**
 * Get the user.
 *
 * @return the user name
 * @throws URIException If {@link #decode} fails
 */
public String getUser() throws URIException {
  char[] user = getRawUser();
  return (user == null) ? null : decode(user, getProtocolCharset());
}

代码示例来源:origin: commons-httpclient/commons-httpclient

/**
 * Set the raw-escaped password.
 *
 * @param escapedPassword the raw-escaped password; could be null
 * @throws URIException escaped password not valid or username missed
 */
public void setRawPassword(char[] escapedPassword) throws URIException {
  if (escapedPassword != null 
    && !validate(escapedPassword, within_userinfo)) {
    throw new URIException(URIException.ESCAPING,
      "escaped password not valid");
  }
  if (getRawUser() == null || getRawUser().length == 0) {
    throw new URIException(URIException.PARSING, "username required");
  }
  String username = new String(getRawUser());
  String password = escapedPassword == null ? null : new String(escapedPassword);
  // an emtpy string is allowed as a password
  String userinfo = username + ((password == null) ? "" : ":" + password);
  String hostname = new String(getRawHost());
  String hostport = (_port == -1) ? hostname : hostname + ":" + _port;
  String authority = userinfo + "@" + hostport;
  _userinfo = userinfo.toCharArray();
  _authority = authority.toCharArray();
  setURI();
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-httpclient

/**
 * Get the escaped user
 *
 * @return the escaped user
 */
public String getEscapedUser() {
  char[] user = getRawUser();
  return (user == null) ? null : new String(user);
}

代码示例来源:origin: org.wso2.commons-httpclient/commons-httpclient

/**
 * Get the escaped user
 *
 * @return the escaped user
 */
public String getEscapedUser() {
  char[] user = getRawUser();
  return (user == null) ? null : new String(user);
}

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.httpclient

/**
 * Get the escaped user
 *
 * @return the escaped user
 */
public String getEscapedUser() {
  char[] user = getRawUser();
  return (user == null) ? null : new String(user);
}

代码示例来源:origin: org.apache.commons/httpclient

/**
 * Get the escaped user
 *
 * @return the escaped user
 */
public String getEscapedUser() {
  char[] user = getRawUser();
  return (user == null) ? null : new String(user);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-httpclient

/**
 * Get the user.
 *
 * @return the user name
 * @throws URIException If {@link #decode} fails
 */
public String getUser() throws URIException {
  char[] user = getRawUser();
  return (user == null) ? null : decode(user, getProtocolCharset());
}

代码示例来源:origin: org.apache.commons/httpclient

/**
 * Get the user.
 *
 * @return the user name
 * @throws URIException If {@link #decode} fails
 */
public String getUser() throws URIException {
  char[] user = getRawUser();
  return (user == null) ? null : decode(user, getProtocolCharset());
}

代码示例来源:origin: org.wso2.commons-httpclient/commons-httpclient

/**
 * Get the user.
 *
 * @return the user name
 * @throws URIException If {@link #decode} fails
 */
public String getUser() throws URIException {
  char[] user = getRawUser();
  return (user == null) ? null : decode(user, getProtocolCharset());
}

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.httpclient

/**
 * Get the user.
 *
 * @return the user name
 * @throws URIException If {@link #decode} fails
 */
public String getUser() throws URIException {
  char[] user = getRawUser();
  return (user == null) ? null : decode(user, getProtocolCharset());
}

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.httpclient

/**
 * Set the raw-escaped password.
 *
 * @param escapedPassword the raw-escaped password; could be null
 * @throws URIException escaped password not valid or username missed
 */
public void setRawPassword(char[] escapedPassword) throws URIException {
  if (escapedPassword != null 
    && !validate(escapedPassword, within_userinfo)) {
    throw new URIException(URIException.ESCAPING,
      "escaped password not valid");
  }
  if (getRawUser() == null || getRawUser().length == 0) {
    throw new URIException(URIException.PARSING, "username required");
  }
  String username = new String(getRawUser());
  String password = escapedPassword == null ? null : new String(escapedPassword);
  // an emtpy string is allowed as a password
  String userinfo = username + ((password == null) ? "" : ":" + password);
  String hostname = new String(getRawHost());
  String hostport = (_port == -1) ? hostname : hostname + ":" + _port;
  String authority = userinfo + "@" + hostport;
  _userinfo = userinfo.toCharArray();
  _authority = authority.toCharArray();
  setURI();
}

代码示例来源:origin: org.apache.commons/httpclient

/**
 * Set the raw-escaped password.
 *
 * @param escapedPassword the raw-escaped password; could be null
 * @throws URIException escaped password not valid or username missed
 */
public void setRawPassword(char[] escapedPassword) throws URIException {
  if (escapedPassword != null 
    && !validate(escapedPassword, within_userinfo)) {
    throw new URIException(URIException.ESCAPING,
      "escaped password not valid");
  }
  if (getRawUser() == null || getRawUser().length == 0) {
    throw new URIException(URIException.PARSING, "username required");
  }
  String username = new String(getRawUser());
  String password = escapedPassword == null ? null : new String(escapedPassword);
  // an emtpy string is allowed as a password
  String userinfo = username + ((password == null) ? "" : ":" + password);
  String hostname = new String(getRawHost());
  String hostport = (_port == -1) ? hostname : hostname + ":" + _port;
  String authority = userinfo + "@" + hostport;
  _userinfo = userinfo.toCharArray();
  _authority = authority.toCharArray();
  setURI();
}

代码示例来源:origin: org.wso2.commons-httpclient/commons-httpclient

/**
 * Set the raw-escaped password.
 *
 * @param escapedPassword the raw-escaped password; could be null
 * @throws URIException escaped password not valid or username missed
 */
public void setRawPassword(char[] escapedPassword) throws URIException {
  if (escapedPassword != null 
    && !validate(escapedPassword, within_userinfo)) {
    throw new URIException(URIException.ESCAPING,
      "escaped password not valid");
  }
  if (getRawUser() == null || getRawUser().length == 0) {
    throw new URIException(URIException.PARSING, "username required");
  }
  String username = new String(getRawUser());
  String password = escapedPassword == null ? null : new String(escapedPassword);
  // an emtpy string is allowed as a password
  String userinfo = username + ((password == null) ? "" : ":" + password);
  String hostname = new String(getRawHost());
  String hostport = (_port == -1) ? hostname : hostname + ":" + _port;
  String authority = userinfo + "@" + hostport;
  _userinfo = userinfo.toCharArray();
  _authority = authority.toCharArray();
  setURI();
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-httpclient

/**
 * Set the raw-escaped password.
 *
 * @param escapedPassword the raw-escaped password; could be null
 * @throws URIException escaped password not valid or username missed
 */
public void setRawPassword(char[] escapedPassword) throws URIException {
  if (escapedPassword != null 
    && !validate(escapedPassword, within_userinfo)) {
    throw new URIException(URIException.ESCAPING,
      "escaped password not valid");
  }
  if (getRawUser() == null || getRawUser().length == 0) {
    throw new URIException(URIException.PARSING, "username required");
  }
  String username = new String(getRawUser());
  String password = escapedPassword == null ? null : new String(escapedPassword);
  // an emtpy string is allowed as a password
  String userinfo = username + ((password == null) ? "" : ":" + password);
  String hostname = new String(getRawHost());
  String hostport = (_port == -1) ? hostname : hostname + ":" + _port;
  String authority = userinfo + "@" + hostport;
  _userinfo = userinfo.toCharArray();
  _authority = authority.toCharArray();
  setURI();
}

相关文章