你没有关闭流.
在mycopy方法的while块后添加下面两行.
br.close()
bw.close()
我写的小例子.
package test
import java.io.*
public class FileTest{
public static void main(String[] args){
File from=new File("src\\test\\FileTest.java")
File to=new File("src\\xxxx\\FileTest2.java")
copyFile(from,to)
}
public static void copyFile(File from,File to){
BufferedInputStream in=null
BufferedOutputStream out=null
try{
if(!from.exists()){
return
}
if(!to.exists()){
File toDir=new File(to.getParent())
toDir.mkdirs()
to.createNewFile()
}
in=new BufferedInputStream(new FileInputStream(from))
out=new BufferedOutputStream(new FileOutputStream(to))
int b=0
while((b=in.read())!=-1){
out.write(b)
}
in.close()
out.close()
}catch(IOException ex){
ex.printStackTrace()
}
}
}
import java.io.BufferedReaderimport java.io.File
import java.io.FileInputStream
import java.io.IOException
import java.io.InputStreamReader
import java.io.PrintWriter
public class QuestionOne {
// a文件路径 (输入文件)
private static final String INPUT_FILE_PATH = "c:/input.txt"
// b文件路径 (输出文件)
private static final String OUTPUT_FILE_PATH = "c:/output.txt"
/**
* 急求!!用java语言将一个文本文件a.txt中的内容写入一个新文件b.txt中 悬赏分:20 | 离问题结束还有 14 天 23 小时 |
* 提问者:我滴智商木下限 | 检举
* 若写入的字符是小写字母,则需变换为大写后再写入文件中。急求!!!希望在今晚前给我写好,不胜感激!我现在只有20分没法给更多了,希望有人能帮帮我
*
* @throws IOException
*/
public static void main(String[] args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(
new FileInputStream(INPUT_FILE_PATH)))
PrintWriter writer = new PrintWriter(new File(OUTPUT_FILE_PATH))
String message = null// 存储用户输入的字符串
try {
while ((message = reader.readLine()) != null) {
// 打印处理前的字符串
System.out.println("读入的字符串为:" + message)
// 小写转为大写的
message = message.toUpperCase()
// 打印处理后的字符串
System.out.println("处理后为:" + message)
writer.println(message)
}
} catch (Exception e) {
e.printStackTrace()
System.out.println("出现异常,程序退出!")
}
writer.close()// 关闭
reader.close()
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)