java中如何从文件中读取数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中如何从文件中读取数据相关的知识,希望对你有一定的参考价值。
分为读字节,读字符两种读法◎◎◎FileInputStream 字节输入流读文件◎◎◎
public class Maintest
public static void main(String[] args) throws IOException
File f=new File("G:\\just for fun\\xiangwei.txt");
FileInputStream fin=new FileInputStream(f);
byte[] bs=new byte[1024];
int count=0;
while((count=fin.read(bs))>0)
String str=new String(bs,0,count); //反复定义新变量:每一次都 重新定义新变量,接收新读取的数据
System.out.println(str); //反复输出新变量:每一次都 输出重新定义的新变量
fin.close();
◎◎◎FileReader 字符输入流读文件◎◎◎
public class Maintest
public static void main(String[] args) throws IOException
File f=new File("H:\\just for fun\\xiangwei.txt");
FileReader fre=new FileReader(f);
BufferedReader bre=new BufferedReader(fre);
String str="";
while((str=bre.readLine())!=null) //●判断最后一行不存在,为空
System.out.println(str);
bre.close();
fre.close();
参考技术A 1.package txt;
2.
3.import java.io.BufferedReader;
4.import java.io.File;
5.import java.io.FileInputStream;
6.import java.io.InputStreamReader;
7.
8./**
9. * 读取TXE数据
10. */
11.public class ReadTxtUtils
12. public static void main(String arg[])
13. try
14. String encoding = "GBK"; // 字符编码(可解决中文乱码问题 )
15. File file = new File("c:/aa.txt");
16. if (file.isFile() && file.exists())
17. InputStreamReader read = new InputStreamReader(
18. new FileInputStream(file), encoding);
19. BufferedReader bufferedReader = new BufferedReader(read);
20. String lineTXT = null;
21. while ((lineTXT = bufferedReader.readLine()) != null)
22. System.out.println(lineTXT.toString().trim());
23.
24. read.close();
25. else
26. System.out.println("找不到指定的文件!");
27.
28. catch (Exception e)
29. System.out.println("读取文件内容操作出错");
30. e.printStackTrace();
31.
32.
33.
java读取TXT文件中的数据,每一行就是一个数,返回一个数组,代码?
?
List list=new ArrayList();
BufferedReader br=new BufferReader(new InputStreamReader(new FileInputStream(new File("in.txt"))));
String str=null;
while((str=br.readLine())!=null)
list.add(new Integer(str));
Integer[] i=new Integer[list.size()];
list.toArray(i);
TXT文本中如据形如:
123
456
789
读入二维数组效果为:
temp[0][]=1,2,3;
temp[1][]=4,5,6;
temp[2][]=7,8,9;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.*;
public class xx
public static void main(String[]args)
String s;
int[][]save=new int[3][3];
try
BufferedReader in =new BufferedReader(new FileReader("C:\\txt.txt"));
int i=0;
while((s=in.readLine())!=null)
save[i][0]=Integer.parseInt(s.substring(0,1));
save[i][1]=Integer.parseInt(s.substring(1,2));
save[i][2]=Integer.parseInt(s.substring(2,3));
i++;
catch(FileNotFoundException e)
e.printStackTrace();
catch(IOException e)
e.printStackTrace();
for(int i=0;i<3;i++)
for(int j=0;j<3;j++)
System.out.print(save[i][j]);
System.out.println();
或
?
BufferedReader bf=new BufferedReader(new FileReader("Your file"));
String lineContent=null;
int i = 0;
int [][] temp = new int [3][];
while((lineContent=bf.readLine())!=null)
String [] str = lineContent.split("\\d");// 将 lineContent 按数字拆分
for(int j = 0; j < str.length(); j++)
int [i][j] = Integer.parseInt(str[j]);
i++;
scp|cs|ff|201101
这是d:\\a.txt的数据,与“|”分割取数据出来,保存在变量a;b;c;d里
import java.io.*;
public class Test
public static void main(String[] args)throws Exception
String a, b, c, d;
StringBuffer sb = new StringBuffer();
BufferedReader br = new BufferedReader(new FileReader("d:\\a.txt"));
String s = br.readLine();
while(s != null)
sb.append(s);
s = br.readLine();
s = sb.toString();
String[] str = s.split("|");
a = str[0];
b = str[0];
c = str[0];
d = str[0];
参考技术B 根据文件路径创建Java.io.File对象,然后通过FileOutputStream获得文件内容。如果是结构化数据则需要相应的解析类。 参考技术C 根据java 的IO流
如何在java中读取xep文件数据
【中文标题】如何在java中读取xep文件数据【英文标题】:How to read xep file data in java 【发布时间】:2021-07-19 19:58:46 【问题描述】:有没有什么方法可以在 pdf 完全渲染和输入之前获得总页数,我们提供 xml 文件,xslt 是页面布局的样式表,我们使用 RenderX 进行 pdf 转换,从 xslt 转换为 xsl- fo 文件,从 xsl-fo 转换为 xep 文件,从 xep 转换为 ps/pdf 文件。 还有一个问题如何通过在 xep 中使用 java 从 xep 文件中读取数据,它包含页码和 id 等。
【问题讨论】:
什么样的 xep 文件?你想完成什么? 你还没准备好在这里提问。阅读Why is "Can someone help me?" not an actual question? 然后阅读How to Ask。然后写一些代码。然后返回minimal reproducible example 和一个关于你卡在哪里的具体问题。 【参考方案1】:XEP 格式是一个 xml 文档。您可以在 RenderX 文档中查看所有标签的结构和含义。既然是XML,可以用很多方法来提取甚至改变它。
页面由 xep:page 元素表示。您可以检查 XEP 格式的此元素并获取页码和其他信息。
【讨论】:
以上是关于java中如何从文件中读取数据的主要内容,如果未能解决你的问题,请参考以下文章