如何从属性文件获取文件路径并作为参数传递给方法

时间:2013-08-18 18:11:26

标签: java

在属性文件中:

FOLDERPATH = C:\预配置/ Import.csv

在Main类中,我将此路径作为方法加载

的参数传递
Properties pro = new Properties();
new CSV().load(con,"pro.FolderPath", "VALIDATION");

但它给出了错误:

pro.getProperty(FolderPath) (The system cannot find the file specified.)

请将此路径作为参数传递给方法。

1 个答案:

答案 0 :(得分:3)

您需要先加载属性文件:

FileReader reader = new FileReader( "your properties file path" );

Properties prop2 = new Properties();
prop2.load( reader );
prop2.list( System.out );