• 获取系统版本,判断是windows还是Linux


    package com.foresee.zxpt.common.utils;
    
    import java.util.Properties;
    
    /**
     * 获取系统版本
     * @author GZ
     *
     */
    public class OSUtils {
    
    	/**
    	 * 判断是否是Linux
    	 * @return
    	 */
    	public static boolean isOSLinux() {
            Properties prop = System.getProperties();
    
            String os = prop.getProperty("os.name");
            if (os != null && os.toLowerCase().indexOf("linux") > -1) {
                return true;
            } else {
                return false;
            }
        }
    	
    	/**
    	 * 判断是否是windows
    	 * @return
    	 */
    	public static boolean isOSWin() {
    		Properties prop = System.getProperties();
    		
    		String os = prop.getProperty("os.name");
    		if (os != null && os.toLowerCase().startsWith("win")) {
    			return true;
    		} else {
    			return false;
    		}
    	}
    }
    
  • 相关阅读:
    解决ValueError: Some of types cannot be determined by the first 100 rows,
    关于number_format的一个报错
    关于IPV6审核被拒问题处理
    项目集成三方库由静态库转为动态库遇到的问题总结
    Swift判断对象属于什么类型
    运行项目报错 报scandir() has been disabled for security reasons
    CocoPods port 443
    Jetpack学习-WorkManager
    Jetpack学习-Paging
    Jetpack学习-Navigation
  • 原文地址:https://www.cnblogs.com/gz9218/p/4002bbdf3490bb98a48ab866287f8f19.html
Copyright © 2020-2023  润新知