将 csv 或文本文件导入数据库
我想将 csv 文件(csv 文件是 excel 文件的一种类型)或文本文件中的数据导出到我的数据库,另一方面,csv 文件包含的列看起来与数据库中的列相同,但它们除外。 我在 Java EE 平台下工作,使用 struts、spring 和 hibernate 框架,以及 postgereSQL 作为数据库。
i want to export datas in csv file(csv file is a type as the excel file) or text file to my database, in other hand the csv file contains columns that are the seem one in the database except same of them.
I work under a Java EE platform with struts, spring and hibernate frameworks, and postgereSQL as database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
利用 postgresql 的 COPY 命令
Utilize postgresql's COPY command