爪哇.从 FTP 读取文件,但不要全部下载

Java. Read file from FTP but DON#39;T download it whole(爪哇.从 FTP 读取文件,但不要全部下载)
本文介绍了爪哇.从 FTP 读取文件,但不要全部下载的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我需要从 FTP 读取 CSV 文件头.

I need to read CSV file header from FTP.

由于这些文件可能非常大,我不需要下载它们.

As these files can be very huge, I don't need to download them.

有没有办法从 FTP 读取 CSV 文件的第一行并中止连接?

Is there a way to read first line of CSV file from FTP and abort connection?

推荐答案

只读取第一行,忽略剩余部分并关闭流.智能 FTP 客户端在提供任何内容供读取之前不会在内存中缓冲 整个 流.

Just read only the first line, ignore the remnant and close the stream. A smart FTP client won't buffer the entire stream in memory before providing anything for read.

假设您使用的是 Apache Commons Net FTPClient:

BufferedReader reader = null;
String firstLine = null;

try {
    InputStream stream = ftpClient.retrieveFileStream(ftpFile.getName());
    reader = new BufferedReader(new InputStreamReader(stream, "UTF-8"));
    firstLine = reader.readLine();
} finally {
    if (reader != null) try { reader.close(); } catch (IOException logOrIgnore) {}
}

doYourThingWith(firstLine);

这篇关于爪哇.从 FTP 读取文件,但不要全部下载的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Android sdk 18 TextView gravity doesn#39;t work vertically(Android sdk 18 TextView 重力不能垂直工作)
Java android: appending a newline using TextView(Java android:使用 TextView 添加换行符)
How to create simple Android TextView and display text on it using java code?(如何使用 java 代码创建简单的 Android TextView 并在其上显示文本?)
Add opaque quot;shadowquot; (outline) to Android TextView(添加不透明的“阴影(大纲)到 Android TextView)
Android: Creating a Circular TextView?(Android:创建一个圆形 TextView?)
Android - set TextView TextStyle programmatically?(Android - 以编程方式设置 TextView TextStyle?)