Java 字节流输出示例:将字符串写入文件
以下是一个 Java 实现基于字节流进行输出的程序例子:
import java.io.FileOutputStream;
import java.io.IOException;
public class ByteStreamOutputExample {
public static void main(String[] args) {
String filePath = 'output.txt';
String content = 'Hello, World!';
try (FileOutputStream fos = new FileOutputStream(filePath)) {
byte[] byteContent = content.getBytes();
fos.write(byteContent);
System.out.println('Content has been written to the file.');
} catch (IOException e) {
System.out.println('An error occurred while writing to the file.');
e.printStackTrace();
}
}
}
这个例子使用FileOutputStream类来创建一个基于字节流的输出流,将指定的内容写入到文件中。首先,我们定义了一个文件路径和要写入的内容。然后,在try块中创建了一个FileOutputStream对象,并使用getBytes()方法将内容转换为字节数组。接下来,使用write()方法将字节数组写入文件。最后,在catch块中处理可能发生的IOException异常。
原文地址: https://www.cveoy.top/t/topic/fOOM 著作权归作者所有。请勿转载和采集!