JAVA中,从一个文件中读出的数据怎么写入另一个文件
publicstaticvoidfileRead(){Filef=newFile("G:/森云/测试文件。txt");RandomAccessFilerdf=null;t...
public static void fileRead(){ File f=new File("G:/森云/测试文件。txt"); RandomAccessFile rdf=null; try{ rdf=new RandomAccessFile(f,"rw"); rdf.skipBytes(8); byte[] b=new byte[8]; rdf.read(b); String str=new String(b); }catch(FileNotFoundException e){ e.printStackTrace(); }catch(IOException e){ e.printStackTrace(); } } public static void fileWrite()throws FileNotFoundException,IOException{ File f=new File("G:/森云/测试文件1。txt"); RandomAccessFile rdf=null; rdf=new RandomAccessFile(f,"rw"); }我怎么将读文件的读出的str传入到写文件的方法中去
展开
3个回答
展开全部
/**
* 读出写出
* @param oldFileName 源文件
* @param newFileName 新文件
* @throws IOException
*/
public static void testRead(String oldFileName,String newFileName) throws IOException{
FileOutputStream fos=new FileOutputStream(new File(newFileName));
RandomAccessFile raf=new RandomAccessFile(new File(oldFileName), "rw");
fos.write(raf.read(new byte[8]));
fos.flush();
fos.close();
raf.close();
}
public static void fileWrite() throws FileNotFoundException, IOException {
testRead("G:/森云/测试文件1。txt","G:/newFile.txt");
}
展开全部
有简单的方法,给你个例子
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.Writer;
import java.util.Scanner;
public class Test {
public static void main(String args[]) {
String srcFile = "D:/a.txt";
String toFile = "D:/b.txt";
try {
String result = read(srcFile);
write(result, toFile);
} catch (Exception e) {
e.printStackTrace();
}
}
private static String read(String srcFile) throws FileNotFoundException {
Scanner in = new Scanner(new File(srcFile));
String result = "";
while (in.hasNextLine()) {
result += in.nextLine() + "\r\n";
}
in.close();
return result;
}
private static void write(String result, String toFile) throws Exception {
Writer w = new FileWriter(new File(toFile));
w.write(result);
w.flush();
w.close();
}
}
追问
谢谢啦,不过又遇到一个新的问题,读出的数据没有规律,怎么办?
追答
我这个例子是逐行读取的,你要什么规律?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-08-03
展开全部
RandomAccessFile
可读、可写的呀,另打开一个写入就好了
可读、可写的呀,另打开一个写入就好了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询