赞
踩
在项目开发过程中,不可避免的会遇到进行操作本地文件时候,多数情况下会有一个默认路径,存放对应的文件。但是在不同的操作系统切换时,还需要进行更改对应的一些配置。
网上查询可以java获取当前系统名称,可以根据返回选择对应的路径,减少了操作。
核心代码就是:
System.getProperty(“os.name”)
输出为:Windows 10,这就是我的当前操作系统的名称。
基于这进行封装方法类:
import org.springframework.context.annotation.Configuration;
import base.properties.PropertiesUtils;
@Configuration
public class FileDataConfig {
// @Value("${terminal-software-version.tmp-dir-linux}")
private String tmpDirLinux = PropertiesUtils.getString("temp.dir.linux");
// @Value("${terminal-software-version.tmp-dir-windows}")
private String tmpDirWindows = PropertiesUtils.getString("temp.dir.windows");
public String getTmpDirLinux() {
return tmpDirLinux;
}
public void setTmpDirLinux(String tmpDirLinux) {
this.tmpDirLinux = tmpDirLinux;
}
public String getTmpDirWindows() {
return tmpDirWindows;
}
public void setTmpDirWindows(String tmpDirWindows) {
this.tmpDirWindows = tmpDirWindows;
}
public String getPath() {
// 获取文件临时存储路径
String path = "";
String os = System.getProperty("os.name");
if (os.toLowerCase().startsWith("win")) {
path = getTmpDirWindows();
} else {
path = getTmpDirLinux();
}
return path;
}
}
其中PropertiesUtils也是方法类:
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
/**
* 服务配置文件工具类.
*/
public class PropertiesUtils {
/** 服务配置文件名称 */
private static final String SYSTEM_PROPERTIES = "system.properties";
/** 服务配置文件属性 */
private static final Properties props = new Properties();
/**
* 初始化服务配置文件
*/
static {
// 加载服务配置文件
InputStream is = PropertiesUtils.class.getClassLoader().getResourceAsStream(SYSTEM_PROPERTIES);
try {
// 将服务配置文件内容加载到属性对象中
props.load(is);
} catch (IOException e) {
throw new ExceptionInInitializerError(e);
}
}
/**
* 根据指定属性key获取对应属性value.
*
* @param key
* 属性key
* @return 属性value
*/
public static String getString(String key) {
String value = props.getProperty(key);
return value == null ? null : value.trim();
}
/**
* 根据指定属性key获取对应属性布尔型value.
*
* @param key
* 属性key
* @return 属性布尔型value
*/
public static Boolean getBoolean(String key) {
boolean value = false;
try {
String svalue = props.getProperty(key);
value = svalue == null ? false : Boolean.parseBoolean(svalue.trim());
} catch (Exception e) {
}
return value;
}
/**
* 根据指定属性key获取对应属性整型value.
*
* @param key
* 属性key
* @return 属性整型value
*/
public static Integer getInteger(String key) {
int value = 0;
try {
String svalue = props.getPrseInt(svalue.trim());
} catch (Exception e) {
}
return value;
}
/**
* 根据指定属性key获取对应属性整形value.
*
* @param key
* 属性key
* @return 属性整形value
*/
public static Long getLong(String key) {
long value = 0;
try {
String svalue = props.getProperty(key);
value = svalue == null ? 0 : Long.parseLong(svalue.trim());
} catch (Exception e) {
}
return value;
}
/**
* 根据指定属性key获取对应属性整形value.
*
* @param key
* 属性key
* @return 属性整形value
*/
public static Double getDouble(String key) {
double value = 0;
try {
String svalue = props.getProperty(key);
value = svalue == null ? 0.0 : Double.parseDouble(svalue.trim());
} catch (Exception e) {
}
return value;
}
}
扩展学习在Java 官方API中找到支持的可以获得的操作系统的参数的 key 列表:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。