使用字节流创建一个名称为“1.txt”的文件,并输入“某正在学习字节流”,某指自己姓名。再将其用字节输入流读出并在控制台显示。
时间: 2024-05-01 12:20:18 浏览: 41
以下是 Java 代码实现:
```java
import java.io.*;
public class ByteStreamExample {
public static void main(String[] args) {
String fileName = "1.txt";
String content = "某正在学习字节流";
// 写入文件
try (OutputStream os = new FileOutputStream(fileName)) {
byte[] bytes = content.getBytes();
os.write(bytes);
System.out.println("写入成功!");
} catch (IOException e) {
e.printStackTrace();
}
// 读取文件
try (InputStream is = new FileInputStream(fileName)) {
byte[] bytes = new byte[1024];
int len = is.read(bytes);
String result = new String(bytes, 0, len);
System.out.println("读取成功:" + result);
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
运行结果如下:
```
写入成功!
读取成功:某正在学习字节流
```
阅读全文