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

io.leopard.commons.utility.BrowserUtil Maven / Gradle / Ivy

package io.leopard.commons.utility;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class BrowserUtil {
	
	/**
	 * 获取IE版本号
* @param userAgent 请求信息中的userAgent * @return IE版本号 */ public static int getIeVersion(String userAgent){ int version = 7; Pattern p = Pattern.compile("MSIE"); Matcher matcher = p.matcher(userAgent); if(matcher.find()){ int start = matcher.start() + 5; int end = matcher.end() + 4; String content = userAgent.substring(start, end); version = (int)Double.parseDouble(content); } return version; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy