temp
Posted xiaolei2017
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了temp相关的知识,希望对你有一定的参考价值。
package com.cvicse.ump.core; import java.io.FileInputStream; import java.util.HashMap; import java.util.Map; import java.util.Properties; /** * Createy by user on 6/6/2018.10:41 */ public class LoadProperty { public static Map<String, String> loadProperty() { try { // System.getProperty("user.dir") 获取项目所在的路径 String filePath = System.getProperty("user.dir") + "/cfg/connect_cfg.properties"; Properties prop = new Properties(); FileInputStream in = new FileInputStream(filePath); prop.load(in); System.out.println(filePath); Map<String, String> params = new HashMap<String, String>(); params.put("port", prop.getProperty("connectPort")); } catch (Exception e) { e.printStackTrace(); } return null; } public static void main(String[] args) { loadProperty(); } }
以上是关于temp的主要内容,如果未能解决你的问题,请参考以下文章