java如何读取txt文件内容?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java如何读取txt文件内容?相关的知识,希望对你有一定的参考价值。
D:\1.txt我有一个文件、在d盘、想把里面的所有内容读出来赋值给String a;怎么做?
通常,可以直接通过文件流来读取txt文件的内容,但有时可能会出现乱码!此时只要设置一下文件字符编码即可。
(1)JAVA 读取txt文件内容
(2)读取文件效果:
FileReader f = new FileReader("D:\\1.txt"); // 注意路径这里可以有两种表示方法一个种\\一种/就可以了 BufferedReader buf = new BufferedReader(f);
String s; while((s = buf.readLine() ) != null) System.out.println(s); f.close(); buf.close();
catch(IOException e) 参考技术B
可以试试Apache的common.io这个工具包,很好用的
package com.havefun.play;import java.io.File;
import java.io.IOException;
import java.nio.charset.Charset;
import org.apache.commons.io.FileUtils;
public class FunIO
public static void main(String[] args)
File file = new File("文件路径");
try
String content = FileUtils.readFileToString(file, Charset.forName("UTF-8"));
System.out.println(content);
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
参考技术C 给你两个方法,你可以看看 ;
//获取值返回String 文本
public String txt2String(String filePath)
File file=new File(filePath);
StringBuilder result = new StringBuilder();
try
BufferedReader br = new BufferedReader(new FileReader(file));//构造一个BufferedReader类来读取文件
String s = null;
while((s = br.readLine())!=null)//使用readLine方法,一次读一行
result.append(s+System.lineSeparator());
br.close();
catch(Exception e)
e.printStackTrace();
return result.toString();
//获取值不返回String 文本
public void readTxtFile(String filePath)
try
String encoding="GBK";
File file=new File(filePath);
if(file.isFile() && file.exists()) //判断文件是否存在
InputStreamReader read = new InputStreamReader(
new FileInputStream(file),encoding);//考虑到编码格式
BufferedReader bufferedReader = new BufferedReader(read);
String lineTxt = null;
while((lineTxt = bufferedReader.readLine()) != null)
System.out.println(lineTxt);
read.close();
else
System.out.println("找不到指定的文件");
catch (Exception e)
System.out.println("读取文件内容出错");
e.printStackTrace();
参考技术D 用FileInputStream 文件输入流进行读取, 然后用StringBuffer接收, 再赋值给 String a即可, 不要问我贴代码, 工作量大
以上是关于java如何读取txt文件内容?的主要内容,如果未能解决你的问题,请参考以下文章