Hallo,
ich bastle gerade an einem Hangman Spiel rum. Das Spiel funktioniert in Eclipse auch wunderbar, allerdings scheint es in der JAR Datei die Wortbibliothek(txt Datei) nicht zu finden und macht einfach gar nix.
Der absolute Pfad der Wortbibliothek ist : D:\Workspace\Hangman\src\wortbibliothek.txt
ich bastle gerade an einem Hangman Spiel rum. Das Spiel funktioniert in Eclipse auch wunderbar, allerdings scheint es in der JAR Datei die Wortbibliothek(txt Datei) nicht zu finden und macht einfach gar nix.
Der absolute Pfad der Wortbibliothek ist : D:\Workspace\Hangman\src\wortbibliothek.txt
Java:
public void setWordSoloMode() throws FileNotFoundException {
WörterEinlesen( "src\\wortbibliothek.txt");
int zufall = (int) (Math.random()*wortBibliothek.size());
wort = (String) wortBibliothek.get(zufall);
}
/*
* Überträgt alle Wörter aus einer Datei in eine ArrayList
*/
public void WörterEinlesen(String dateiname) throws FileNotFoundException{
wortBibliothek = new ArrayList();
File file = new File(dateiname);
bf = new BufferedReader(new FileReader(file));
String zeile = new String();
try {
while((zeile = bf.readLine()) != null){
wortBibliothek.add(zeile.toUpperCase());
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
finally{
try {
bf.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}