“Java Guardar archivo” Código de respuesta

Java Guardar archivo

//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

escribir archivo 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

Java Guardar archivo


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

Respuestas similares a “Java Guardar archivo”

Preguntas similares a “Java Guardar archivo”

Más respuestas relacionadas con “Java Guardar archivo” en Java

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código