In Java können Sie den Inhalt einer Datei auf viele Arten lesen. Eine Möglichkeit besteht darin, die Klasse java.util.Scanner zu verwenden, um sie als Zeichenfolge zu lesen. Dazu
instantiate Scanner Klasse und übernimmt den Pfad der zu lesenden Datei als Parameter für ihren Konstruktor.
Erstellen Sie einen leeren String-Puffer.
Wenn der Scanner die nächste Zeile hat, starten Sie die While-Schleife basierend auf der Bedingung. Das ist gleichzeitig hasNextLine().
Verwenden Sie die Methode append() innerhalb einer Schleife.
Verwenden Sie die Methode toString(), um den Pufferinhalt in String zu konvertieren.
li>Erstellen Sie eine Datei mit dem Namen sample.txt im System-C-Verzeichnis, kopieren Sie den folgenden Inhalt und fügen Sie ihn ein.
Tutorials Point is an E-learning company that set out on its journey to provide knowledge to that class of readers that responds better to online content. With Tutorials Point, you can learn at your own pace, in your own space. After a successful journey of providing the best learning content at tutorialspoint.com, we created our subscription based premium product called Tutorix to provide Simply Easy Learning in the best personalized way for K-12 students, and aspirants of competitive exams like IIT/JEE and NEET.
Das folgende Java-Programm liest den Inhalt der Datei sample.txt in einen String und gibt ihn aus.
import java.io.File; import java.io.IOException; import java.util.Scanner; public class FileToString { public static void main(String[] args) throws IOException { Scanner sc = new Scanner(new File("E://test//sample.txt")); String input; StringBuffer sb = new StringBuffer(); while (sc.hasNextLine()) { input = sc.nextLine(); sb.append(" "+input); } System.out.println("Contents of the file are: "+sb.toString()); } }
Contents of the file are: Tutorials Point is an E-learning company that set out on its journey to provide knowledge to that class of readers that responds better to online content. With Tutorials Point, you can learn at your own pace, in your own space. After a successful journey of providing the best learning content at tutorialspoint.com, we created our subscription based premium product called Tutorix to provide Simply Easy Learning in the best personalized way for K-12 students, and aspirants of competitive exams like IIT/JEE and NEET.
Das obige ist der detaillierte Inhalt vonWie können wir in Java eine Zeichenfolge aus Dateiinhalten erstellen?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!