首页 > 代码库 > 把文件a.txt复制到指定目录下为a.mp3
把文件a.txt复制到指定目录下为a.mp3
package cn.mldn.demo;
import java.io.*;
public class TestDemo{
public static void main(String[] args) throws IOException {
File f1=new File("d:/a.txt");
InputStream fis=new FileInputStream(f1);
File f2=new File("d:/a.mp3");
OutputStream fos=new FileOutputStream(f2);
if(!f1.exists()){
System.out.println("目录不存在!");
}else{
int temp=0;
byte data[]=new byte[1024];
while((temp=fis.read(data))!=-1){
fos.write(data, 0, temp);
}
System.out.println("复制成功!");
}
fis.close();
fos.close();
}
}
把文件a.txt复制到指定目录下为a.mp3
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。