使用Java创建动态属性文件

时间:2016-06-09 11:07:01

标签: java jdbc

我正在编写代码,其中存在需要根据日期每天更新的属性文件。

基本上有一张Excel工作表必须用作我的Web App的源文档。但是每天都会生成一个新文件,文件名为from collections import OrderedDict initial_list = [('key1', 'value1'), ('key2', 'value2'), ('key3', 'value3'), (1,2), ('a','z'), ('aa','z')] my_dict = OrderedDict(initial_list) initial_list_from = my_dict.items() print initial_list_from == initial_list # True ,例如日期为06/09/2016,文件名为workbooktoday'sDate,现在我和#39;在类文件中创建它,我想将所有内容移到workbook20160609,目前我的代码如下(在Java类中)。

properties file

在我的下一个程序中,我使用以下语句。

DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
Date date = new Date();
private String todayDate = dateFormat.format(date);
String replaceHyph = todayDate.replace("-", "");
String x = "workbook";
String y = ".xls";
private String excelPath = x + replaceHyph + y;

这会将源文件名设置为conn = DriverManager.getConnection( "jdbc:odbc:Driver={Microsoft Excel Driver (*.xls)};DBQ=" + excelPath + "; READONLY=FALSE;"); ,请告诉我如何在属性文件中获得相同的内容。

请告诉我如何在我的属性文件中实现相同功能。

我想要宣布只有一半的人像workbookToday'sDate一样说话,并像我上面那样连接,最后再连接jdbc:odbc:Driver={Microsoft Excel Driver (*.xls)};DBQ="。如果这是一个好的方法,请建议我,还请建议我任何其他更好的方法。

由于

0 个答案:

没有答案