Esta cuestión se puede tratar de diferentes maneras, por lo tanto te enseñamos la resolución más completa en nuestra opinión.
Ejemplo 1: escribir en un archivo en Java
importjava.io.FileWriter;// Import the FileWriter classimportjava.io.IOException;// Import the IOException class to handle errorspublicclassWriteToFilepublicstaticvoidmain(String[] args)tryFileWriter myWriter =newFileWriter("filename.txt");
myWriter.write("Files in Java might be tricky, but it is fun enough!");
myWriter.close();System.out.println("Successfully wrote to the file.");catch(IOException e)System.out.println("An error occurred.");
e.printStackTrace();
Ejemplo 2: java crea un archivo txt
File myObj =newFile("path");
myObj.createNewFile();FileWriter myWriter =newFileWriter("path");
myWriter.write("text");
myWriter.close();
Valoraciones y comentarios
Si conservas algún reparo o forma de perfeccionar nuestro escrito puedes realizar una crítica y con deseo lo ojearemos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)