FileDocCategorySizeDatePackage
ShortFilter.javaAPI DocExample503Sun Mar 28 19:06:54 BST 1999com.macfaq.io

ShortFilter

public class ShortFilter extends DataFilter

Fields Summary
Constructors Summary
public ShortFilter(DataInputStream din)

    super(din);
  
Methods Summary
protected voidfill()

  
    int number = din.readShort();
    String s = Integer.toString(number) 
     + System.getProperty("line.separator", "\r\n");
    byte[] b = s.getBytes("8859_1");
    buf = new int[b.length];
    for (int i = 0; i < b.length; i++) {
      buf[i] = b[i];
    }