用java编写一个应用程序,读取一个文本的内容。

2024-11-30 14:54:28
推荐回答(3个)
回答(1):

import java.io.*;
public class Input
{
public static void main(String[] args) throws Exception
{
FileInputStream fis = new FileInputStream("D:/abc.txt");
//把字符输入流转换成字节流,并且套上缓冲流管子
BufferedReader buf = new BufferedReader(new InputStreamReader(fis));
String s = null;
while((s=buf.readLine())!=null)
System.out.println(s);
buf.close();
}
}

回答(2):

编写一个Java应用程序,开启一个文本文件(以本程序源文件为例读取),一次import java.io.*; import java.util.LinkedList; public class

回答(3):

public String readData(){
//数据库文件位置
String url ="D:/data.txt";
String strs = "";
try{
//读取文件
FileReader read = new FileReader(new File(url));
StringBuffer sb = new StringBuffer();
char ch[] = new char[1024];
int d = read.read(ch);
while(d!=-1){
String str = new String(ch,0,d);
sb.append(str);
d = read.read(ch);
}
String a = sb.toString();//.replaceAll("@@@@@", ",");
strs = a;//.substring(0,a.length()-1);
}catch(Exception e){
e.printStackTrace();
}

return strs;
}