JAVA读取文件内容并放入数组

我现在有一个txt文件,文件每行由2个单词和1个数字组成。(文件有几百行)
例如:
aaa bbb 3
aaa ccc 2
kkk bbb 4
ccc aaa 7
我现在需要读取这个文件,并将数据放入2个数组中。
数组1.str1 记录单词及出现次数
str1[0].name="aaa",str1[0].num=3; (aaa出现3次(与另外3个单词有联系))
str1[1].name="bbb",str1[1].num=2;
.......
数组2,str2 记录在同一行的2个单词和对应的数字。
(str2是为了知道每个单词和哪些单词有联系(放在同一行):如果有别的更方便的存储方法也可以帮忙实现,谢谢!)
str2[0].former=str1[0], str2[0].latter=str1[1],str[0].value=3;
str2[1]...
......
请问这样要怎么操作呢?读取文件--存储--统计次数---知道每个单词与哪些单词互相联系。
请各位大神帮忙,谢谢!

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184    public class ReadFromFile {    /**     * 以字节为单位读取文件,常用于读二进制文件,如图片、声音、影像等文件。     */    public static void readFileByBytes(String fileName) {        File file = new File(fileName);        InputStream in = null;        try {            System.out.println("以字节为单位读取文件内容,一次读一个字节:");            // 一次读一个字节            in = new FileInputStream(file);            int tempbyte;            while ((tempbyte = in.read()) != -1) {                System.out.write(tempbyte);            }            in.close();        } catch (IOException e) {            e.printStackTrace();            return;        }        try {            System.out.println("以字节为单位读取文件内容,一次读多个字节:");            // 一次读多个字节            byte[] tempbytes = new byte[100];            int byteread = 0;            in = new FileInputStream(fileName);            ReadFromFile.showAvailableBytes(in);            // 读入多个字节到字节数组中,byteread为一次读入的字节数            while ((byteread = in.read(tempbytes)) != -1) {                System.out.write(tempbytes, 0, byteread);            }        } catch (Exception e1) {            e1.printStackTrace();        } finally {            if (in != null) {                try {                    in.close();                } catch (IOException e1) {                }            }        }    }     /**     * 以字符为单位读取文件,常用于读文本,数字等类型的文件     */    public static void readFileByChars(String fileName) {        File file = new File(fileName);        Reader reader = null;        try {            System.out.println("以字符为单位读取文件内容,一次读一个字节:");            // 一次读一个字符            reader = new InputStreamReader(new FileInputStream(file));            int tempchar;            while ((tempchar = reader.read()) != -1) {                // 对于windows下,\r\n这两个字符在一起时,表示一个换行。                // 但如果这两个字符分开显示时,会换两次行。                // 因此,屏蔽掉\r,或者屏蔽\n。否则,将会多出很多空行。                if (((char) tempchar) != '\r') {                    System.out.print((char) tempchar);                }            }            reader.close();        } catch (Exception e) {            e.printStackTrace();        }        try {            System.out.println("以字符为单位读取文件内容,一次读多个字节:");            // 一次读多个字符            char[] tempchars = new char[30];            int charread = 0;            reader = new InputStreamReader(new FileInputStream(fileName));            // 读入多个字符到字符数组中,charread为一次读取字符数            while ((charread = reader.read(tempchars)) != -1) {                // 同样屏蔽掉\r不显示                if ((charread == tempchars.length)                        && (tempchars[tempchars.length - 1] != '\r')) {                    System.out.print(tempchars);                } else {                    for (int i = 0; i < charread; i++) {                        if (tempchars[i] == '\r') {                            continue;                        } else {                            System.out.print(tempchars[i]);                        }                    }                }            }         } catch (Exception e1) {            e1.printStackTrace();        } finally {            if (reader != null) {                try {                    reader.close();                } catch (IOException e1) {                }            }        }    }     /**     * 以行为单位读取文件,常用于读面向行的格式化文件     */    public static void readFileByLines(String fileName) {        File file = new File(fileName);        BufferedReader reader = null;        try {            System.out.println("以行为单位读取文件内容,一次读一整行:");            reader = new BufferedReader(new FileReader(file));            String tempString = null;            int line = 1;            // 一次读入一行,直到读入null为文件结束            while ((tempString = reader.readLine()) != null) {                // 显示行号                System.out.println("line " + line + ": " + tempString);                line++;            }            reader.close();        } catch (IOException e) {            e.printStackTrace();        } finally {            if (reader != null) {                try {                    reader.close();                } catch (IOException e1) {                }            }        }    }     /**     * 随机读取文件内容     */    public static void readFileByRandomAccess(String fileName) {        RandomAccessFile randomFile = null;        try {            System.out.println("随机读取一段文件内容:");            // 打开一个随机访问文件流,按只读方式            randomFile = new RandomAccessFile(fileName, "r");            // 文件长度,字节数            long fileLength = randomFile.length();            // 读文件的起始位置            int beginIndex = (fileLength > 4) ? 4 : 0;            // 将读文件的开始位置移到beginIndex位置。            randomFile.seek(beginIndex);            byte[] bytes = new byte[10];            int byteread = 0;            // 一次读10个字节,如果文件内容不足10个字节,则读剩下的字节。            // 将一次读取的字节数赋给byteread            while ((byteread = randomFile.read(bytes)) != -1) {                System.out.write(bytes, 0, byteread);            }        } catch (IOException e) {            e.printStackTrace();        } finally {            if (randomFile != null) {                try {                    randomFile.close();                } catch (IOException e1) {                }            }        }    }     /**     * 显示输入流中还剩的字节数     */    private static void showAvailableBytes(InputStream in) {        try {            System.out.println("当前字节输入流中的字节数为:" + in.available());        } catch (IOException e) {            e.printStackTrace();        }    }     public static void main(String[] args) {        String fileName = "C:/temp/newTemp.txt";        ReadFromFile.readFileByBytes(fileName);        ReadFromFile.readFileByChars(fileName);        ReadFromFile.readFileByLines(fileName);        ReadFromFile.readFileByRandomAccess(fileName);    }}

温馨提示:内容为网友见解,仅供参考
第1个回答  推荐于2017-12-16
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;

public class MyMain {
private String url;
private List<String> lines = new ArrayList<String>();
private List<String> strings = new ArrayList<String>();
private Map<String,Integer> map1 = new HashMap<String,Integer>();
private Map<Integer,String[]> map2 = new HashMap<Integer,String[]>();
public MyMain(){
url = "D:\\abc.txt";
read();
}
public void read(){//读取文件内容。
File file = new File(url);
try {
BufferedReader br = new BufferedReader(new FileReader(file));
for(String line =br.readLine();line!=null;line = br.readLine()){
lines.add(line);
}
for (int i=0;i<lines.size();i++) {
String[] strs = lines.get(i).split(" ");
for (String string : strs) {
strings.add(string);
}
map2.put(i, strs);
}
for (String str : strings) {
if(map1.containsKey(str)){
int num = map1.get(str)+1;
map1.remove(str);
System.out.print(str);
map1.put(str, num);
}else{
map1.put(str, 1);
}
}

} catch (Exception e) {
e.printStackTrace();
}
}

public Map<String, Integer> getMap1() {
return map1;
}
public Map<Integer, String[]> getMap2() {
return map2;
}
public static void main(String args[]){
MyMain mymain = new MyMain();
Map<String,Integer> map1 = mymain.getMap1();
Map<Integer,String[]> map2 = mymain.getMap2();
//时间关系,就不遍历查看了,已经装进去了
}
}追问

Map这个完全没用过啊。。能不能解释一下。。。结果怎么遍历也很重要。。。。
为什么不用数组存放呢?用这个有什么优势吗?

追答

str1[1].name="bbb",str1[1].num=2; 数组没有这些方法啊。

map就是一种容器。你把他想成映射表的形式就好了。
存放的内容是成对的。每一对有key,value。取的时候,根据key取value,
在这里。map1中,key 表示出现的单词, value表示出现次数。
map2中,key表示出现行数,value表示出现的单词集合。
到前面,数据已经装进去了。要想获取map1中的数字,直接用
map1.get(key);就好了。

本回答被提问者采纳
第2个回答  2015-04-28
用文本流流操作 FileReader 实现类追问

能具体一点吗?

第3个回答  2015-04-28
还是不很懂

java读取文件中多个数据,放入不同数组
第一步,实现读取文件功能,定义方法public List<String> read(String filePath);这个方法是读取文件内容,每一行做一个string字符串存到列表list中,读取完后返回字符串列表;可以使用scanner类和fileinputstream结合实现,先new fileinputstream对象,再new scanner对象,之后通过scanner的nextline方法读取完所...

Java如何将文本文档中的字符串读取到字符串数组?
使用RandomAccessFile先读取一次计算行数,seek重置到文件头部,再读取每行,赋值给a数组。import java.io.FileNotFoundException;import java.io.IOException;import java.io.RandomAccessFile;public class Test { \/\/此题目关键是根据文件内容确定二维数组的行数和列数 public static void main(String[] ...

JAVA怎么从文件中把数字读取出来并且放到一个数组中呢?
是48,也就是说,字符'0'相当于十进制数48,所以读我的1.txtx文件,第一个字符是'1',你的num[j]=list[j]-'0'计算的时候,就是'1'-'0'相当于49-48=1,所以字符1打印出来就是1。然后我们看我1.txt的第4个字符,是'a',找到'a'的码值:所以'a'-'0'相当于97-48=49,所以打出来...

Java中如何提取TXT文件数据并讲数据导入到数组里...急求
public static void main(String[] args) throws FileNotFoundException { Scanner scanner = new Scanner(new FileInputStream("d:\/data.txt"));\/\/通过FileInputStream构建Scanner ArrayList<Integer[]> integerDataList = new ArrayList<>();\/\/初始化数据存放list,arrayList中的每一项是一条数...

用java写一段程序,读取本地txt文件中用逗号隔开的数字,这几段数字放...
BufferedReader readTxt=new BufferedReader(new FileReader(new File("text.txt"))); String textLine=""; String str=""; while(( textLine=readTxt.readLine())!=null){ str+=" "+ textLine; } String[] numbersArray=str.split(",");\/\/这个逗号还可以是其他的字符 ...

java 读取txt文件 每一列存入一个数组
int [] a = new int [size];int [] b = new int [size];float [] c = new float [size];BufferedReader br = new BufferedReader(new FileReader("test.txt"));String line = br.readLine();int i=0;\/\/从0开始 while(line!=null){ String [] numbers = line.split(" ");\/\/...

java中怎样从文件里读取数据,然后赋值给对象数组
import java.io.FileReader;import java.io.IOException;import java.util.ArrayList;import java.util.List;public class FileToArray { public static void main(String[] args) throws IOException { String path = FileToArray.class.getResource("data.txt").toString().substring(6);File file = ...

Java中怎样将一个文件中的数据读取出来,并保存成数组。
readLine()) != null) { String[] ary = input.split(" ");lst.add(ary);} br.close();isr.close();fis.close();\/\/将读入内容转为数组 String[][] content = new String[lst.size()][];for (int i = 0; i < content.length; i++) { content[i] = lst.get(i);} ...

java读取txt文件然后赋值二维数组
java读取txt文件然后赋值二维数组实现方法如下:package shi; import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.InputStreamReader;import java.util.ArrayList;import java.util.List; public class Test13 { \/** * 读取文件 * @param file...

Java读取TXT文档中的数据并赋值给动态数组
BufferedReader in = new BufferedReader(new FileReader("1.txt"));\/\/ 这里"1.txt"是文件名,因此要按实际情况修改 String ss = "";while ((ss = in.readLine()) != null){ String[] s = ss.split(" ");x.add(Double.parseDouble(s[0]));y.add(Double.parseDouble(s[1]));z....

相似回答