-
Notifications
You must be signed in to change notification settings - Fork 0
/
filereader.java
56 lines (34 loc) · 947 Bytes
/
filereader.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//nur ein Testprogramm zum austesten von Funktionen
//kann ignoriert bzw gelöscht werden
import java.util.*;
import java.io.*;
class File
{
ArrayList<String> test = new ArrayList<String>();
File()
{
}
public void liesein(String dateiname) throws IOException
{
FileReader fr = new FileReader(dateiname);
BufferedReader br = new BufferedReader(fr);
String zeile = br.readLine();
while(!zeile.equals("stop")) // Solange Zeile nicht stop ist
{
zeile = br.readLine();
if(!zeile.isEmpty()) //Wenn Zeile nicht null ist
{
test.add(zeile);
}
}
}
}
class test
{
public static void main(String[]args) throws IOException
{
File file = new File();
file.liesein("karten.txt");
System.out.println("Fertig");
}
}