pour obtenir le contenu d'un fichier txt, j'utilise généralement un scanner et parcourt chaque ligne pour obtenir le contenu :
Scanner sc = new Scanner(new File("file.txt"));
while(sc.hasNextLine()){
String str = sc.nextLine();
}
L'API Java fournit-elle un moyen d'obtenir le contenu avec une ligne de code comme :
String content = FileUtils.readFileToString(new File("file.txt"))