Answers for "txt file to array java"

1

java import text file into arraylist

List<String> list = Files.readAllLines(new File("input.txt").toPath(), Charset.defaultCharset() );
Posted by: Guest on June-14-2020
0

from file to array java

BufferedReader bufferedReader = new BufferedReader(new FileReader(myfile));
String []data;
data = new String[10]; // <= how can I do that? data = new String[lines.size]

for (int i=0; i<lines.size(); i++) {
    data[i] = abc.readLine();
    System.out.println(data[i]);
}
abc.close();
Posted by: Guest on May-05-2020
-1

from file to array java

BufferedReader abc = new BufferedReader(new FileReader(myfile));
List<String> lines = new ArrayList<String>();

while((String line = abc.readLine()) != null) {
    lines.add(line);
    System.out.println(data);
}
abc.close();

// If you want to convert to a String[]
String[] data = lines.toArray(new String[]{});
Posted by: Guest on May-05-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language