如何用java读取txt文件
发布网友
发布时间:2022-04-26 03:35
我来回答
共5个回答
热心网友
时间:2022-06-20 13:44
你生成了txt文档,必须要将后缀改为.java,然后使用命令行格式的javac命令进行编译,编译后就会出现.class文件,再用命令行格式的java命令进行运行!
热心网友
时间:2022-06-20 13:44
1.7之前使用 BufferedReader一次一行
1.7 使用 java.nio.file.Files的readAllLines方法一次读到一个List<String>追问谢谢
追答1.6:
BufferedReader reader = new BufferedReader(new FileReader(...));
for(String line = reader.readLine(); line != null; line = reader.readLine()){
process(line);
}
热心网友
时间:2022-06-20 13:44
用java读取txt文件:
public String read(String path) throws Exception { //读
File f = new File(path);
FileInputStream input = new FileInputStream(f);
BufferedInputStream buf=new BufferedInputStream(input);
byte[] b=new byte[(int) f.length()];
input.read(b);
input.close();
return new String(b);
}
public static void writeFileByByte(String path,String strs,boolean a) throws Exception{ //写
File f1=new File(path);
FileOutputStream out=new FileOutputStream(f1,a);
byte[] b=strs.getBytes();
out.write(b);
out.close();
}
也可以参考JAVA IO。
public class ReadTxtFile {
public static void main(String[] args) throws Exception {
File file = new File("C:\\Users\\795829\\Desktop\\1.txt");
// 字符流读取文件数据
BufferedReader br = new BufferedReader(new FileReader(file));
String line;
while ((line = br.readLine()) != null) {
System.out.println(line);
}
br.close();
System.exit(-1); // TODO 测试用
// 字节流读取文件数据
FileInputStream fis = new FileInputStream(file);
int n = 1024;
byte buffer[] = new byte[n];
while ((fis.read(buffer, 0, n) != -1) && (n > 0)) {
System.out.print(new String(buffer));
}
fis.close();
}
}
热心网友
时间:2022-06-20 13:45
java中读取文件用io。
读txt写个最简单的方法
BufferedReader in = new BufferedReader(new FileReader("foo.in"));
String str = "";
String s = in.readLine();
while ( s != null ){
str = str + s;
s = in.readLine();
}
然后文件就读到str中了。还可以使用最标准的io读法,这个就请好好找一本书看看吧。
热心网友
时间:2022-06-20 13:46
..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);
}