上传者: 39841365
|
上传时间: 2022-02-21 18:33:02
|
文件大小: 5.04MB
|
文件类型: -
android-vedio-upload-and-download
安卓视频上传与下载
核心代码:
if (localUrl == null) {
localUrl = Environment.getExternalStorageDirectory()
.getAbsolutePath()
"/VideoCache/"
System.currentTimeMillis() ".mp4";
}
Log.d("localUrl: " , localUrl);
File cacheFile = new File(localUrl);
if (!cacheFile.exists()) {
cacheFile.getParentFile().mkdirs();
try {