国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 易门县| 开远市| 调兵山市| 林州市| 巴里| 东山县| 任丘市| 永定县| 庄浪县| 榆林市| 天祝| 灌阳县| 江川县| 星子县| 浦江县| 永春县| 芷江| 格尔木市| 景谷| 揭东县| 肥乡县| 通城县| 南投市| 泉州市| 武平县| 沙坪坝区| 通河县| 克什克腾旗| 淮南市| 和平县| 巫山县| 鄂伦春自治旗| 乌什县| 安岳县| 德州市| 朝阳县| 宣汉县| 嘉黎县| 温宿县| 石屏县| 巩义市|