0
我遇到了一個問題,我想從android的sdcard中將位置從一個位置複製/移動到另一個位置。 有人知道如何做到這一點。?在Android中將視頻從一個位置複製到另一個位置
我遇到了一個問題,我想從android的sdcard中將位置從一個位置複製/移動到另一個位置。 有人知道如何做到這一點。?在Android中將視頻從一個位置複製到另一個位置
private String CopyFile(String srcPath,String destPath)
{
String videoFileName = VIDEO_FILE_PREFIX + mCurrentQuestion.getQuestionId() + VIDEO_FILE_SUFFIX ;
File source= new File(srcPath);
File destination= new File(destPath+"/"+videoFileName);
source.renameTo(destination);
return destPath+"/"+videoFileName;
}
請參閱http://exampledepot.com/egs/java.io/CopyFile.html – MAC 2012-07-07 08:57:48