gpt4 book ai didi

android - 在 Android 上下载文件时未检测到 0 字节文件

转载 作者:太空宇宙 更新时间:2023-11-03 10:22:42 24 4
gpt4 key购买 nike

我有一个适用于 Android 的应用程序,可以从 Internet 下载数百个文件。有些文件在下载后变成了 0 字节。该应用程序会尝试检测此类情况并在下载后删除此类文件,但有时会失败。此问题在 Android 4.x 设备上更常见。

这是下载的方法。我从 inputStream.read(buffer) 获取实际读取的字节数。

public class Utils
{
public static class DownloadFileData
{
int nTotalSize;
int nDownloadedSize;
}
public interface ProgressCallback
{
void onProgress(long nCurrent, long nMax);
}
public static boolean downloadFile(String sFileURL, File whereToSave, DownloadFileData fileData, ProgressCallback progressCallback)
{
InputStream inputStream = null;
FileOutputStream fileOutput = null;
try
{
URL url = new URL(sFileURL);
URLConnection connection = url.openConnection();

//set up some things on the connection
connection.setDoOutput(true);
connection.connect();

fileOutput = new FileOutputStream(whereToSave);
inputStream = connection.getInputStream();
fileData.nTotalSize = connection.getContentLength();
fileData.nDownloadedSize = 0;

byte[] buffer = new byte[1024];
int bufferLength = 0; //used to store a temporary size of the buffer

// now, read through the input buffer and write the contents to the file
while ((bufferLength = inputStream.read(buffer)) > 0)
{
// if interrupted, don't download the file further and return
// also restore the interrupted flag so that the caller stopped also
if (Thread.interrupted())
{
Thread.currentThread().interrupt();
return false;
}

// add the data in the buffer to the file in the file output stream
fileOutput.write(buffer, 0, bufferLength);
// add up the size so we know how much is downloaded
fileData.nDownloadedSize += bufferLength;

if (null != progressCallback && fileData.nTotalSize > 0)
{
progressCallback.onProgress(fileData.nDownloadedSize, fileData.nTotalSize);
}
}
return true;
}
catch (FileNotFoundException e)
{
return false; // swallow a 404
}
catch (IOException e)
{
return false; // swallow a 404
}
catch (Throwable e)
{
return false;
}
finally
{
// in any case close input and output streams
if (null != inputStream)
{
try
{
inputStream.close();
inputStream = null;
}
catch (Exception e)
{
}
}
if (null != fileOutput)
{
try
{
fileOutput.close();
fileOutput = null;
}
catch (Exception e)
{
}
}
}
}

这是处理下载的一段代码。由于有时读取的字节数不正确(大于 0,而实际文件的大小为 0 字节),我使用 outputFile.length() 检查下载文件的大小。但这再次给出了一个 > 0 的值,即使文件实际上是 0 字节。我还尝试创建一个新文件并使用 recheckSizeFile.length() 读取其大小。大小仍然确定为 > 0,而实际上是 0 字节。

Utils.DownloadFileData fileData = new Utils.DownloadFileData();
boolean bDownloadedSuccessully = Utils.downloadFile(app.sCurrenltyDownloadedFile, outputFile, fileData, new Utils.ProgressCallback()
{
... // progress bar is updated here
});

if (bDownloadedSuccessully)
{
boolean bIsGarbage = false;
File recheckSizeFile = new File(sFullPath);
long nDownloadedFileSize = Math.min(recheckSizeFile.length(), Math.min(outputFile.length(), fileData.nDownloadedSize));
// if the file is 0bytes, it's garbage
if (0 == nDownloadedFileSize)
{
bIsGarbage = true;
}
// if this is a video and if of suspiciously small size, it's
// garbage, too
else if (Utils.isStringEndingWith(app.sCurrenltyDownloadedFile, App.VIDEO_FILE_EXTENSIONS) && nDownloadedFileSize < Constants.MIN_NON_GARBAGE_VIDEO_FILE_SIZE)
{
bIsGarbage = true;
}
if (bIsGarbage)
{
++app.nFilesGarbage;
app.updateLastMessageInDownloadLog("File is fake, deleting: " + app.sCurrenltyDownloadedFile);
// delete the garbage file
if (null != outputFile)
{
if (!outputFile.delete())
{
Log.e("MyService", "Failed to delete garbage file " + app.sCurrenltyDownloadedFile);
}
}
}
else
{
... // process the normally downloaded file
}

我不确定,但我认为 Android 中存在读取文件大小的错误。有没有人见过类似的问题?还是我在这里做错了什么?谢谢!

编辑:我如何确定文件是 0 字节的:所有下载的文件都通过所描述的例程进行。当我稍后使用文件浏览器 (Ghost Commander) 查看下载文件夹时,一些文件(比如 10%)是 0 字节的。它们无法通过视频播放器播放(显示为“损坏的文件”图标)。

最佳答案

在我看来,您的问题是您仅在 Utils.downloadFile 调用返回 true 时才检查“垃圾”文件。如果在 getInputStream 调用或第一次 read 中下载失败,您将创建一个长度为零的文件,该文件永远不会被删除。

关于android - 在 Android 上下载文件时未检测到 0 字节文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17399938/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com