阅读量:0
在Java中,可以使用FileOutputStream和BufferedWriter类将数据存储到文件中。以下是一个简单的示例代码:
import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; public class WriteToFileExample { public static void main(String[] args) { String data = "Hello, World!"; try { BufferedWriter writer = new BufferedWriter(new FileWriter("output.txt")); writer.write(data); writer.close(); System.out.println("Data has been written to output.txt"); } catch (IOException e) { System.out.println("An error occurred."); e.printStackTrace(); } } }
在这个示例中,我们创建了一个字符串"data",然后使用BufferedWriter将这个字符串写入到一个名为"output.txt"的文件中。如果文件不存在,它会被创建;如果文件已经存在,它的内容会被覆盖。最后,我们关闭写入流并打印一条消息来确认数据已经被成功写入文件中。
使用FileOutputStream也可以实现将数据存储到文件中,只不过需要手动处理数据的编码和写入。
import java.io.FileOutputStream; import java.io.IOException; public class WriteToFileExample { public static void main(String[] args) { String data = "Hello, World!"; try { FileOutputStream fos = new FileOutputStream("output.txt"); fos.write(data.getBytes()); fos.close(); System.out.println("Data has been written to output.txt"); } catch (IOException e) { System.out.println("An error occurred."); e.printStackTrace(); } } }
无论是使用BufferedWriter还是FileOutputStream,都需要注意在使用完流之后关闭流以释放资源。