public static String getDirPath() { Resource resource = null; Properties props = null; String driverClass = null; try { resource = new ClassPathResource("/data.properties"); props = PropertiesLoaderUtils.loadProperties(resource); driverClass= (String) props.get("wingPath"); } catch (IOException e) { e.printStackTrace(); } return driverClass; }
时间: 2024-10-09 07:24:11