1

我正在使用 NSURLConnection 下载一个 mp3 文件并将其保存到一个文件中。问题是创建了 mp3 文件(找到使用模拟器时创建的 mp3 文件),但我无法访问 mp3 文件。有任何想法吗?!!!!!

这是我正在使用的代码

filename = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:save_name]; 
[[NSFileManager defaultManager] createFileAtPath:filename contents:nil attributes:nil]; 

file = [[NSFileHandle fileHandleForUpdatingAtPath:filename] retain];// file is in .h

if (file) {
   [file seekToEndOfFile];
} 
[file writeData:data]; 
4

1 回答 1

1

看起来您需要在写入文件后关闭文件。

[fileHandle closeFile];
于 2010-06-14T20:45:51.647 回答