复制文本
Posted zhenfuxing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了复制文本相关的知识,希望对你有一定的参考价值。
package kgc.com;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
public class CopyDemo {
public static void main(String[] args) {
FileInputStream fis = null;
FileOutputStream fos = null;
try {
fis = new FileInputStream("bdqn.txt");
fos = new FileOutputStream("bdqncopy.txt");
int result = -1;
String info = "";
System.out.println("能够读取到的字节数:"+fis.available());
while((result = fis.read())!=-1) {
info += (char)result;
//System.out.print((char)result);
}
System.out.println("读取完毕,准备复制");
byte[] bytes = info.getBytes();
fos.write(bytes, 0, bytes.length);
System.out.println("复制完毕,请刷新工程查看文件");
fos.flush();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally {
try {
if(fos!=null) {
fos.close();
}
if(fis!=null) {
fis.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
以上是关于复制文本的主要内容,如果未能解决你的问题,请参考以下文章
❤️《10个超级常用Python方法总结》复制即用丨小白捷径文末赠书2本❤️