com.litongjava.tio.utils.http.useragent.UserAgentUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-utils Show documentation
Show all versions of tio-utils Show documentation
t-io is a aio framework for java
package com.litongjava.tio.utils.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);
}
public static boolean isWechat(String userAgentString) {
return userAgentString.contains("WeChat/");
}
public static boolean isQQ(String userAgentString) {
return userAgentString.contains("QQ/");
}
}