怎样用eclipse读写文件

2025-01-06 18:13:39
推荐回答(4个)
回答1:

要实现读写文件, 可以使用到java中的I/O流。具体代码如下:

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;

/**
 * java读写文件
 * 读取d:/1.txt文件内容,写入f:/text.txt文件中.
 * 
 * 写入文件换行用fw.write("\r\n");
 * 或者fw.write("\n");
 * @author young
 *
 */
public class FileWriterTest {
// 读写文件
public static void rwFile(){
FileWriter fw = null;
BufferedReader br = null;
try {
fw = new FileWriter("f:\\text.txt", true);
br = new BufferedReader(new InputStreamReader(
new FileInputStream("d:\\1.txt"), "UTF-8"));
String line = null;
while ((line = br.readLine()) != null) {
System.out.println("文件内容: " + line);
fw.write(line);
fw.flush();
}
br.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (fw != null) {
try {
fw.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}

public static void main(String[] args) {
rwFile();
}
}

在D盘新建文本文件1.txt,输入任意内容,在eclipse中执行java代码,会在F盘生成text.txt文本文件,并把1.txt内容写入到text.txt中。

回答2:

eclipse只不过是一个开发工具,你指的是java吧, java里面的io包里面的类可以帮你实现读写文件

回答3:

..io流啊 ​FileInputStream in = new FileInputStream(new File("D:\\a\\v.txt")); ​byte b[] = new byte[10*1024]; ​int a = in.read(b); ​while(a!=-1){ ​System.out.println(b);

回答4:

file————openfile ,然后打开自己的xxxxx.java文件就可可以啦