JDBC

IO Framework

Screenshot (1472).png

Chaining IO Streams

image.png

Screenshot (1469).png

Primitive types IO

DataOutput/DataInput interface

interface DataOutput
  writeUTF(String s)
  writeInt(int i)
  writeDouble(double d)
  writeShort(short s)
  ...

interface DataInput
  String readUTF()
  int readInt()
  double readDouble()
  short readShort()
  ...

Serialization

image.png

Screenshot (1473).png

Screenshot (1470).png