AndroidのSDカード内でビデオをある場所から別の場所にコピー/移動したいという問題に悩まされています。誰もそれを行う方法を知っていますか?
質問する
83 次
1 に答える
0
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;
}
于 2012-07-07T09:39:37.963 に答える