JVM Languages
javatape.txt
Associated article: Tape Devices & Java
Tags: JVM Languages
Published source code accompanying the article by Chad Gibbons in which he presents his own tape library because native support for tape devices doesn't exist in Java. Also see JAVATAPE.ZIP.
Tape Devices & Java
by Chad Gibbons
Example 1:
import java.io.*;
public class BasicTapeDevice {
public TapeDevice(String pathName) throws IOException { ... }
public synchronized void close() throws IOException { ... }
public InputStream getInputStream() throws IOException { ... }
public OutputStream getOutputStream() throws IOException { . } public int getBlockSize() throws ...


