我需要帮助构建一个数组,在该数组中它将保存.txt文件的值。
文本文件(示例):
this is the text file.
我希望数组看起来像:
Array[0]:This
Array[1]:is
etc..
希望有人可以帮助我,我熟悉如何打开,创建和阅读文本文件,但目前就是这样。一旦我可以阅读它,我不知道如何使用/播放数据。这是我迄今为止构建的。
import java.util.*;
import java.io.*;
public class file {
private Scanner x;
public void openFile(){
try{
x=new Scanner(new File("note3.txt"));
}
catch(Exception e){
System.out.println("Could not find file"); }}
public void readFile(){
String str;
while(x.hasNext()){
String a=x.next();
System.out.println(a);}}
public void closeFile(){
x.close();}}
单独的文件,其中包含......
public class Prac33 {
public static void main(String[] args) {
file r =new file();
r.openFile();
r.readFile();
r.closeFile();
}
}
我希望将这些存储到一个数组中,以后我可以按字母顺序对文件进行排序。
答案 0 :(得分:2)
您可以先将整个文件存储到字符串中,然后将其拆分:
...
String whole = "";
while (x.hasNext()) {
String a = x.next();
whole = whole + " " + a;
}
String[] array = whole.split(" ");
...
或者您可以使用ArrayList
,这是一个更清洁的'溶液:
...
ArrayList<String> words= new ArrayList<>();
while (x.hasNext()) {
String a = x.next();
words.add(a);
}
//get an item from the arraylist like this:
String val=words.get(index);
...
答案 1 :(得分:0)
您可以添加ArrayList
而不是System.out.println(a);
。
然后,您可以在完成使用后将ArrayList
转换为String array
:
String[] array = list.toArray(new String[list.size()]);
答案 2 :(得分:-1)
以下是您可以做的事情:
import java.util.*;
import java.io.*;
public class file {
private Scanner x;
public void openFile() {
try {
x = new Scanner(new File("note3.txt"));
} catch (Exception e) {
e.printStackTrace();
}
}
public String[] readFile(String[] array) {
long count = 0;
while (x.hasNext()) {
String a = x.next();
array[(int) count] = a;
System.out.println(a);
count++;
}
return array;
}
public void closeFile() {
x.close();
}
}
答案 3 :(得分:-3)
使用
new BufferedReader (new FileReader ("file name"));
使用bufferedReader
的对象迭代并从文件中读取行。发布使用StringTokenizer
基于" "
空格进行标记并将其存储到array
。