home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / sun / net / TelnetOutputStream.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  587 b   |  54 lines

  1. package sun.net;
  2.  
  3. import java.io.BufferedOutputStream;
  4. import java.io.IOException;
  5. import java.io.OutputStream;
  6.  
  7. public class TelnetOutputStream extends BufferedOutputStream {
  8.    boolean stickyCRLF = false;
  9.    boolean seenCR = false;
  10.    public boolean binaryMode = false;
  11.  
  12.    public TelnetOutputStream(OutputStream var1, boolean var2) {
  13.       super(var1);
  14.       this.binaryMode = var2;
  15.    }
  16.  
  17.    public void write(int var1) throws IOException {
  18.       if (this.binaryMode) {
  19.          super.write(var1);
  20.       } else {
  21.          if (this.seenCR) {
  22.             if (var1 != 10) {
  23.                super.write(0);
  24.             }
  25.          } else if (var1 == 13) {
  26.             if (this.stickyCRLF) {
  27.                this.seenCR = true;
  28.             } else {
  29.                super.write(13);
  30.                var1 = 0;
  31.             }
  32.          }
  33.  
  34.          super.write(var1);
  35.       }
  36.  
  37.    }
  38.  
  39.    public void write(byte[] var1, int var2, int var3) throws IOException {
  40.       if (this.binaryMode) {
  41.          super.write(var1, var2, var3);
  42.       } else {
  43.          while(true) {
  44.             --var3;
  45.             if (var3 < 0) {
  46.                return;
  47.             }
  48.  
  49.             this.write(var1[var2++]);
  50.          }
  51.       }
  52.    }
  53. }
  54.