发布网友 发布时间:2022-04-26 05:31
共2个回答
热心网友 时间:2022-06-21 05:16
import java.io.*;
public class NoInputNoOutput {
public static void main(String[] args) throws IOException {
System.out.println("-----开始写入 -----");
// 当前目录下建一文件
File f = new File("Exercise19_3.dat");
// 准备往里面写东西
OutputStream os = new FileOutputStream(f);
// 使用过滤流将写入单位扩大为对象
DataOutputStream dos = new DataOutputStream(os);
// 定义4个整数
int[] data = { 1, 2, 3, 4 };
// 往文件里写入4个数据
for (int i = 0; i < data.length; i++) {
dos.writeInt(data[i]);
}
// 摧毁指针以防止黑客对数据进行破坏
dos.close();
System.out.println("-----写入完毕 -----");
System.out.println("+++++开始读取 +++++");
// 输出流
InputStream is = new FileInputStream(f);
// 过滤流
DataInputStream dis = new DataInputStream(is);
// 存放总和
int result = 0;
// 疯狂地读取
while (true) {
try {
// 每读出一个整数累加到result中
result += dis.readInt();
} catch (Exception e) {
// 当读取无法完成时跳出循环
break;
}
}
// 跳到这里
System.out.println("相加结果:" + result);
System.out.println("+++++读取完毕+++++");
}
}
热心网友 时间:2022-06-21 05:16
使用数据库函数 sum