我正在创建一个应用程序,我在自定义gridview中显示特定文件夹中的图像。我想将点击的项目移动到另一个文件夹。我有来自gridview的图像的绝对路径以及我要移动文件的文件夹的绝对路径。问题是我不知道如何将文件从存储实际图像的文件夹移动到另一个文件夹。有人可以告诉我代码或类,我可以帮助我将文件从一个文件夹移动到另一个文件夹。我在stackoverflow上搜索了很多,发现了一些代码,但这些代码并不适用于我的情况。
答案 0 :(得分:2)
您有两种方式:
1:
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
public class MoveFileExample
{
public static void main(String[] args)
{
InputStream inStream = null;
OutputStream outStream = null;
try{
File afile =new File("C:\\folderA\\Afile.txt");
File bfile =new File("C:\\folderB\\Afile.txt");
inStream = new FileInputStream(afile);
outStream = new FileOutputStream(bfile);
byte[] buffer = new byte[1024];
int length;
//copy the file content in bytes
while ((length = inStream.read(buffer)) > 0){
outStream.write(buffer, 0, length);
}
inStream.close();
outStream.close();
//delete the original file
afile.delete();
System.out.println("File is copied successful!");
}catch(IOException e){
e.printStackTrace();
}
}
}
2:
import java.io.File;
public class MoveFileExample
{
public static void main(String[] args)
{
try{
File afile =new File("C:\\folderA\\Afile.txt");
if(afile.renameTo(new File("C:\\folderB\\" + afile.getName()))){
System.out.println("File is moved successful!");
}else{
System.out.println("File is failed to move!");
}
}catch(Exception e){
e.printStackTrace();
}
}
}
代码示例来自此处:http://www.mkyong.com/java/how-to-move-file-to-another-directory-in-java/