und seh funktionierts auch ned...
ohne Syntaxfehler...aber er zeigt halt nix an...
ohne Syntaxfehler...aber er zeigt halt nix an...
Code:
BufferedReader f = null;
try {
f = new BufferedReader(new FileReader("C:/Dokumente und Einstellungen/fschwarz/Desktop/Projekt/Schachregeln.txt"));
} catch (FileNotFoundException e2) {
// TODO Auto-generated catch block
e2.printStackTrace();
}
String line;
try {
while ( (line = f.readLine()) != null)
{
// tue was mit 'line', bspw.:
textArea.setText( line );
}
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}