国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開(kāi)發(fā)設(shè)計(jì) > 正文

使用DataStream 讀寫(xiě)文件之一

2019-11-18 15:29:04
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友
 

 

使用DataStream 讀寫(xiě)文件之一
/* From http://java.sun.com/docs/books/tutorial/index.Html */

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.EOFException;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;

public class DataIODemo {
  public static void main(String[] args) throws IOException {

    // write the data out
    DataOutputStream out = new DataOutputStream(new FileOutputStream(
        "invoice1.txt"));

    double[] PRices = { 19.99, 9.99, 15.99, 3.99, 4.99 };
    int[] units = { 12, 8, 13, 29, 50 };
    String[] descs = { "Java T-shirt", "Java Mug", "Duke Juggling Dolls",
        "Java Pin", "Java Key Chain" };

    for (int i = 0; i < prices.length; i++) {
      out.writeDouble(prices[i]);
      out.writeChar('/t');
      out.writeInt(units[i]);
      out.writeChar('/t');
      out.writeChars(descs[i]);
      out.writeChar('/n');
    }
    out.close();

    // read it in again
    DataInputStream in = new DataInputStream(new FileInputStream(
        "invoice1.txt"));

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

    try {
      while (true) {
        price = in.readDouble();
        in.readChar(); // throws out the tab
        unit = in.readInt();
        in.readChar(); // throws out the tab
        char chr;
        desc = new StringBuffer(20);
        char lineSep = System.getProperty("line.separator").charAt(0);
        while ((chr = in.readChar()) != lineSep)
          desc.append(chr);
        System.out.println("You've ordered " + unit + " units of "
            + desc + " at $" + price);
        total = total + unit * price;
      }
    } catch (EOFException e) {
    }
    System.out.println("For a TOTAL of: $" + total);
    in.close();
  }
}


發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 瑞安市| 嘉善县| 井陉县| 运城市| 建阳市| 沙田区| 明水县| 鲁山县| 遂平县| 金阳县| 内乡县| 温州市| 兴安县| 苍溪县| 万安县| 博爱县| 五峰| 湛江市| 朝阳县| 普格县| 秦安县| 固始县| 洱源县| 霍山县| 饶平县| 武陟县| 广德县| 五华县| 泰来县| 海盐县| 民乐县| 西充县| 淄博市| 贡觉县| 柘荣县| 武汉市| 威海市| 武汉市| 吉安县| 郓城县| 许昌县|