二进制文件写 : 缓冲流 « 文件输入输出 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 文件输入输出 » 缓冲流屏幕截图 
二进制文件写
 

import java.io.BufferedOutputStream;
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileOutputStream;

public class WriteBinaryFile {
  public static void main(String[] argsthrows Exception {
    Product[] movies = new Product[10];

    movies[0new Product("W"194614.95);
    movies[1new Product("T"196512.95);
    movies[2new Product("Y"197416.95);
    movies[3new Product("R"197511.95);
    movies[4new Product("S"197717.95);
    movies[5new Product("P"198716.95);
    movies[6new Product("G"198914.95);
    movies[7new Product("A"199519.95);
    movies[8new Product("Game"199714.95);
    movies[9new Product("F"200119.95);

    DataOutputStream out = openOutputStream("movies.dat");
    for (Product m : movies)
      writeMovie(m, out);
    out.close();
  }

  private static DataOutputStream openOutputStream(String namethrows Exception {
    DataOutputStream out = null;
    File file = new File(name);
    out = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(file)));
    return out;
  }

  private static void writeMovie(Product m, DataOutputStream outthrows Exception {
    out.writeUTF(m.title);
    out.writeInt(m.year);
    out.writeDouble(m.price);
  }


}

class Product {
  public String title;

  public int year;

  public double price;

  public Product(String title, int year, double price) {
    this.title = title;
    this.year = year;
    this.price = price;
  }
}

 
Related examples in the same category
1. Use BufferedInputStream and BufferedOutputStream to copy byte array
2. 使用缓冲输入
3. 从二进制文件与BufferedInputStream读
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.