java内容
Properties props = Resources.getResourceAsProperties("jdbc.properties"); String url = props.getProperty("jdbc.url"); String driver = props.getProperty("jdbc.driverClass"); String username = props.getProperty("jdbc.username"); String password = props.getProperty("jdbc.password"); Class.forName(driver).newInstance(); Connection conn = (Connection) DriverManager.getConnection(url, username, password);
jdbc.properties文件内容
jdbc.driverClass = com.mysql.jdbc.Driver jdbc.url = jdbc\:mysql\://127.0.0.1\:3306/LY?useUnicode\=true&characterEncoding\=UTF-8&zeroDateTimeBehavior\=convertToNull&allowMultiQueries\=true jdbc.username = root jdbc.password = root jdbc.minPoolSize=2 jdbc.maxPoolSize=20 jdbc.checkoutTimeout=3000 jdbc.maxStatements=50 jdbc.testConnectionOnCheckin = false jdbc.idleConnectionTestPeriod =18000
补充知识:模仿com.alibaba.fastjson.JSONObject取值的PropertiesUtils
1.依赖于:fastjson
<dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.39</version> </dependency>
2.话不多说,上代码
package com.gy.common.util; import java.io.IOException; import java.io.InputStream; import java.math.BigDecimal; import java.math.BigInteger; import java.sql.Timestamp; import java.util.Date; import java.util.Properties; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.alibaba.fastjson.util.TypeUtils; /** * java读取配置文件 * * @author Neo 2017-5-12 * @version 1.1 * */ @SuppressWarnings({ "unchecked", "rawtypes" }) public class PropertiesUtils { private static Logger logger = LoggerFactory.getLogger(PropertiesUtils.class); private static Properties properties; private static final String PROPERTIES_EGIS_FILE_NAME = "application/config.properties"; static { properties = new Properties(); InputStream scmsStream = null; try { scmsStream = PropertiesUtils.class.getClassLoader().getResourceAsStream(PROPERTIES_EGIS_FILE_NAME); properties.load(scmsStream); logger.info("PropertiesUtils", "staitc init prop", properties.toString()); } catch (Exception e) { } finally { try { if (scmsStream != null) { scmsStream.close(); } } catch (Exception e) { } } } public static String getProperty(String key) { String result = properties.getProperty(key); return result; } public static String getProperty(String key, String defaultValue) { String result = properties.getProperty(key, defaultValue); return result; } public static String getProperties(String propertiesName, String key) { Properties props = new Properties(); InputStream inputStream = null; try { inputStream = PropertiesUtils.class.getClassLoader().getResourceAsStream(propertiesName); props.load(inputStream); } catch (IOException e) { } finally { try { if (inputStream != null) { inputStream.close(); } } catch (Exception e) { } } return props.getProperty(key); } public static Object getObject(String key, Class clazz) { Object obj = getProperty(key); return TypeUtils.castToJavaBean(obj, clazz); } public static Boolean getBoolean(String key) { Object value = getProperty(key); if (value == null) return null; else return TypeUtils.castToBoolean(value); } public static byte[] getBytes(String key) { Object value = getProperty(key); if (value == null) return null; else return TypeUtils.castToBytes(value); } public static boolean getBooleanValue(String key) { Object value = getProperty(key); if (value == null) return false; else return TypeUtils.castToBoolean(value).booleanValue(); } public static Byte getByte(String key) { Object value = getProperty(key); return TypeUtils.castToByte(value); } public static byte getByteValue(String key) { Object value = getProperty(key); if (value == null) return 0; else return TypeUtils.castToByte(value).byteValue(); } public static Short getShort(String key) { Object value = getProperty(key); return TypeUtils.castToShort(value); } public static short getShortValue(String key) { Object value = getProperty(key); if (value == null) return 0; else return TypeUtils.castToShort(value).shortValue(); } public static Integer getInteger(String key) { Object value = getProperty(key); return TypeUtils.castToInt(value); } public static int getIntValue(String key) { Object value = getProperty(key); if (value == null) return 0; else return TypeUtils.castToInt(value).intValue(); } public static Long getLong(String key) { Object value = getProperty(key); return TypeUtils.castToLong(value); } public static long getLongValue(String key) { Object value = getProperty(key); if (value == null) return 0L; else return TypeUtils.castToLong(value).longValue(); } public static Float getFloat(String key) { Object value = getProperty(key); return TypeUtils.castToFloat(value); } public static float getFloatValue(String key) { Object value = getProperty(key); if (value == null) return 0.0F; else return TypeUtils.castToFloat(value).floatValue(); } public static Double getDouble(String key) { Object value = getProperty(key); return TypeUtils.castToDouble(value); } public static double getDoubleValue(String key) { Object value = getProperty(key); if (value == null) return 0.0D; else return TypeUtils.castToDouble(value).doubleValue(); } public static BigDecimal getBigDecimal(String key) { Object value = getProperty(key); return TypeUtils.castToBigDecimal(value); } public static BigInteger getBigInteger(String key) { Object value = getProperty(key); return TypeUtils.castToBigInteger(value); } public static String getString(String key) { Object value = getProperty(key); if (value == null) return null; else return value.toString(); } public static Date getDate(String key) { Object value = getProperty(key); return TypeUtils.castToDate(value); } public static java.sql.Date getSqlDate(String key) { Object value = getProperty(key); return TypeUtils.castToSqlDate(value); } public static Timestamp getTimestamp(String key) { Object value = getProperty(key); return TypeUtils.castToTimestamp(value); } public static void main(String[] args) { if(getBooleanValue("isNeedLogin")) System.out.println("aaa"); } }
以上这篇java项目中读取jdbc.properties文件操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持小牛知识库。
我想通过使用“文件类”从项目文件夹中获取文件,我如何做到这一点?
问题内容: 我想使用“文件类”从项目文件夹中获取文件,我该怎么办? 问题答案: 嗯,有很多不同的方法来获取Java文件,但这是一般要点。 不要忘记,您至少需要将其包装在a 中,因为File是其中的一部分,这意味着它必须具有try-catch块。 不是要解决Ericson的问题,而是如果您使用的是实际的软件包,则除非明确使用文件的位置,否则文件的位置将有问题。相对路径与Packages混为一谈。 即
问题内容: 在发布此问题之前,我用Google搜索Spring项目(不是基于Web的项目)中的属性。我很困惑,因为每个人都在谈论application- context.xml并具有类似的配置 但是,我正在使用Spring进行普通的Java项目(没有Web应用程序之类的东西)。但是我想从属性文件中获取一些通用属性,并且需要在JAVA文件中使用。如何通过使用Spring / Spring注释实现此目
嗨,我有两个项目,文件如下: 项目1:构建。格拉德尔 项目2:构建。格拉德尔 当我从Project 1执行test1任务时,我得到以下错误: 正在运行任务测试2 失败:生成失败,出现异常。 > 错误:评估脚本时出现问题。建筑属性(无此类文件或目录) 尝试:使用--stacktrac选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获取更多日志输出。 建筑失败 总时间:5.779秒
我正在尝试从子项目中读取文件示例-dfx-sbi 文件位于src/main/resources文件夹内 那为什么文件没有加载呢?
问题内容: 我开发了一个应用程序,可以从用户选择的文件夹中读取文件。它显示每个文件中有多少行代码。我只希望Java文件显示在文件选择器(扩展名为.java的文件)中。下面是我的代码: 我也进行了编辑,但是仍然无法正常工作,请告知请告知如何仅读取扩展名为.java的文件,换句话说,请仅从文件夹中读取java文件,请告知 问题答案: 您需要一个FilenameFilter。这应该为您工作: