摘要:
项目中要对数据按时间处理,在数据库中,时间处理的格式如2014-12-09 06:30:17时间查询出来如下所示:现在要查询具体有哪天的数据,应用substring函数,SQL如下:select distinct substring(( start_time ) from 1 for 10) as ... 阅读全文
摘要:
项目中有需求要把数据导出为CSV文件,因为不同的类有不同的属性,为了代码简单,应用Java的泛型和反射,写了一个函数,完成导出功能。public void saveFile(List list, String outFile) throws IOException { if (lis... 阅读全文