将大型结果集写入文件
我正在尝试将大型结果集(约 1 毫米行)写入单个文件。在 Java 1.6 中是否有首选/有效的方法来执行此操作?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在尝试将大型结果集(约 1 毫米行)写入单个文件。在 Java 1.6 中是否有首选/有效的方法来执行此操作?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
这取决于所使用的 JDBC 驱动程序。您需要指示 JDBC 驱动程序不预先将整个
ResultSet
加载到 Java 内存中,而是在每个next() 时按行加载它调用。然后,在
ResultSet#next()
循环内,您需要将数据立即写入文件,而不是将其保存在List
或其他内容中。目前尚不清楚您使用的是什么 JDBC 驱动程序,但例如,可以指示 MySQL JDBC 驱动程序按照 MySQL JDBC 驱动程序文档:
这是一个具体的启动示例:
顺便说一句,我首先检查数据库是否没有对此的内置 SQL 支持,这可以做更多的事情高效。例如,MySQL 有一个
SELECT INTO OUTFILE
构造 为此。That depends on the JDBC driver used. You need to instruct the JDBC driver to not load the entire
ResultSet
into Java's memory beforehand, but instead load it on a per-row basis on everynext()
call. Then, inside theResultSet#next()
loop, you need to write the data immediately to the file instead of holding it inList
or something.It's unclear what JDBC driver you're using, but for example the MySQL JDBC driver could be instructed to serve the resultset on a per-row basis the following way as per the MySQL JDBC driver documentation:
Here's a concrete kickoff example:
By the way, I'd first check if the DB doesn't have builtin SQL support for this which can do this much more efficiently. For example, MySQL has a
SELECT INTO OUTFILE
construct for this.来自 GitHub: https://github.com/OhadR/ohadr.common/blob/master/src/main/java/com/ohadr/common/utils/resultset/ResultSetConverters.java
From GitHub: https://github.com/OhadR/ohadr.common/blob/master/src/main/java/com/ohadr/common/utils/resultset/ResultSetConverters.java