0

我是一名初学者 Java 程序员,我正在关注Oracle 的 Java 教程

Data Streams的页面上,使用页面中的示例(如下),我无法执行代码。

更新文件

import java.io.*;

public class DataStreams {
    static final String dataFile = "F://Java//DataStreams//invoicedata.txt"; // used to be non-existent file

    static final double[] prices = { 19.99, 9.99, 15.99, 3.99, 4.99 };
    static final int[] units = { 12, 8, 13, 29, 50 };
    static final String[] descs = {
        "Java T-shirt",
        "Java Mug",
        "Duke Juggling Dolls",
        "Java Pin",
        "Java Key Chain"
    };
    public static void main(String args[]) {
        try {
            DataOutputStream out = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(dataFile)));

            for (int i = 0; i < prices.length; i ++) {
                out.writeDouble(prices[i]);
                out.writeInt(units[i]);
                out.writeUTF(descs[i]);
            }

            out.close(); // this was my mistake - didn't have this before

        } catch(IOException e){
            e.printStackTrace(); // used to be System.err.println();
        }

        double price;
        int unit;
        String desc;
        double total = 0.0;

        try {
            DataInputStream in = new DataInputStream(new BufferedInputStream(new FileInputStream(dataFile)));

            while (true) {
                price = in.readDouble();
                unit = in.readInt();
                desc = in.readUTF();
                System.out.format("You ordered %d" + " units of %s at $%.2f%n",
                    unit, desc, price);
                total += unit * price;
            }
        } catch(IOException e) {
            e.printStackTrace(); // Used to be System.err.println();
        }

        System.out.format("Your total is %f.%n" , total);
    }
}

由于某种原因,tryand块中的代码没有执行。catch

它可以正常编译,但是当我运行它时,输出仅为:

你的总数是 0.000000。

它不会将数据写入另一个保持为空的文件,也不会写入价格、单位和描述。

它也不会写入错误消息。

我的代码有什么问题??

任何答案将不胜感激。

编辑

使用out.close()后不使用out是我的错误。感谢您的回答!

4

1 回答 1

3

在使用变量重用它之前,您必须在使用后关闭流out.close()以强制刷新。in

编辑:(从我的评论中复制)
该文件是在您关闭它时创建的,因为缓冲由BufferedInputStream

于 2013-08-26T18:33:00.083 回答