我正在开发一个在循环播放视频文件的应用程序。到目前为止,我只是安装了设备并将视频文件复制到SD卡上,然后使用文件路径在我的VideoView上启动它。我正在尝试实现一种方法,我可以远程更新它播放的视频,所以我已经开始在线存储我的视频了。在应用程序内部,我检查本地副本并下载(如果它不存在),或者是否有更新的副本。我在两个不同的视频文件.mp4s上测试了它。下载后,其中一个播放第一次,但在尝试再次启动循环时,它告诉我视频无法播放。另一个甚至不会第一次播放,它只是给我一个说不能播放视频的对话框。如果我通过USB线将这些文件复制到SD卡上,这两个文件都可以正常使用我的应用程序。如果我退出我的应用程序并使用其他东西(dropbox)手动下载它们,它们会起作用,但如果我从我的应用程序中下载它们则不行。这是我用来下载文件的代码:
public static void DownloadFromUrl(String fileName) { //this is the downloader method
try {
URL url = new URL("http://dl.dropbox.com/u/myfile.mp4");
File file = new File(PATH + fileName);
long startTime = System.currentTimeMillis();
Log.d(myTag, "download begining");
Log.d(myTag, "download url:" + url);
Log.d(myTag, "downloaded file name:" + fileName);
/* Open a connection to that URL. */
URLConnection ucon = url.openConnection();
Log.i(myTag, "Opened Connection");
/*
* Define InputStreams to read from the URLConnection.
*/
InputStream is = ucon.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is);
Log.i(myTag, "Got InputStream and BufferedInputStream");
FileOutputStream fos = new FileOutputStream(file);
BufferedOutputStream bos = new BufferedOutputStream(fos);
Log.i(myTag, "Got FileOutputStream and BufferedOutputStream");
/*
* Read bytes to the Buffer until there is nothing more to read(-1).
*/
int current = 0;
Log.i(myTag, "About to write");
while ((current = bis.read()) != -1) {
bos.write(current);
}
fos.close();
Log.d(myTag, "download ready in"
+ ((System.currentTimeMillis() - startTime))
+ " sec");
} catch (IOException e) {
Log.d(myTag, "Error: " + e);
}
}
我知道此代码段中的Dropbox网址不正确我只更改了此帖子,在我的应用中,网址正确指向了文件。创建文件时使用的变量PATH在我的代码片段之外的代码中设置。
这段代码片段是否会破坏我的mp4文件?
答案 0 :(得分:2)
那种方法在某种程度上破坏了文件,我仍然不太确定如何,但我改变了部分内容,现在它已修复。
我现在正在使用它:
byte data[] = new byte[1024];
long total = 0;
int count;
while ((count = bis.read(data)) != -1) {
total += count;
fos.write(data, 0, count);
}
fos.flush();
fos.close();
而不是旧的while循环,它可以正常工作。