All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dahuatech.hutool.http.useragent.UserAgentUtil Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.hutool.http.useragent;

/**
 * User-Agent工具类
 *
 * @author looly
 */
public class UserAgentUtil {

  /**
   * 解析User-Agent
   *
   * @param userAgentString User-Agent字符串
   * @return {@link UserAgent}
   */
  public static UserAgent parse(String userAgentString) {
    return UserAgentParser.parse(userAgentString);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy