“Fichier Java Enregistrer” Réponses codées

Fichier Java Enregistrer

//Create a text file and write to it immediately
//stackoverflow

PrintWriter writer = new PrintWriter("the-file-name.txt", "UTF-8");
writer.println("The first line");
writer.println("The second line");
writer.close();
Annoying Ant

Écrire un fichier java

@Test
public void givenUsingJava7_whenWritingToFile_thenCorrect() 
  throws IOException {
    String str = "Hello";
 
    Path path = Paths.get(fileName);
    byte[] strToBytes = str.getBytes();
 
    Files.write(path, strToBytes);
 
    String read = Files.readAllLines(path).get(0);
    assertEquals(str, read);
}
Colorful Cottonmouth

Fichier Java Enregistrer


public void saveReport(KmaxWidget widget)
    throws IOException
{
    final String content = report.getProperty("TEXT");
    final Path path = Paths.get("logKMAX.txt");

    try (
        final BufferedWriter writer = Files.newBufferedWriter(path,
            StandardCharsets.UTF_8, StandardOpenOption.CREATE);
    ) {
        writer.write(content);
        writer.flush();
    }
}

Attractive Addax

Réponses similaires à “Fichier Java Enregistrer”

Questions similaires à “Fichier Java Enregistrer”

Plus de réponses similaires à “Fichier Java Enregistrer” dans Java

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code