public class java.io.DataOutputStream extends java.io.FilterOutputStream implements java.io.DataOutput
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.io.DataOutputStream
  super_class: java.io.FilterOutputStream
{
  protected int written;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  private byte[] bytearr;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private byte[] writeBuffer;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.DataOutputStream this
        start local 1 // java.io.OutputStream out
         0: .line 60
            aload 0 /* this */
            aload 1 /* out */
            invokespecial java.io.FilterOutputStream.<init>:(Ljava/io/OutputStream;)V
         1: .line 48
            aload 0 /* this */
            aconst_null
            putfield java.io.DataOutputStream.bytearr:[B
         2: .line 204
            aload 0 /* this */
            bipush 8
            newarray 8
            putfield java.io.DataOutputStream.writeBuffer:[B
         3: .line 61
            return
        end local 1 // java.io.OutputStream out
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/DataOutputStream;
            0    4     1   out  Ljava/io/OutputStream;
    MethodParameters:
      Name  Flags
      out   

  private void incCount(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // java.io.DataOutputStream this
        start local 1 // int value
         0: .line 68
            aload 0 /* this */
            getfield java.io.DataOutputStream.written:I
            iload 1 /* value */
            iadd
            istore 2 /* temp */
        start local 2 // int temp
         1: .line 69
            iload 2 /* temp */
            ifge 3
         2: .line 70
            ldc 2147483647
            istore 2 /* temp */
         3: .line 72
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* temp */
            putfield java.io.DataOutputStream.written:I
         4: .line 73
            return
        end local 2 // int temp
        end local 1 // int value
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Ljava/io/DataOutputStream;
            0    5     1  value  I
            1    5     2   temp  I
    MethodParameters:
       Name  Flags
      value  

  public synchronized void write(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.DataOutputStream this
        start local 1 // int b
         0: .line 88
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            iload 1 /* b */
            invokevirtual java.io.OutputStream.write:(I)V
         1: .line 89
            aload 0 /* this */
            iconst_1
            invokevirtual java.io.DataOutputStream.incCount:(I)V
         2: .line 90
            return
        end local 1 // int b
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/io/DataOutputStream;
            0    3     1     b  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public synchronized void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // java.io.DataOutputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 107
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.OutputStream.write:([BII)V
         1: .line 108
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual java.io.DataOutputStream.incCount:(I)V
         2: .line 109
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/io/DataOutputStream;
            0    3     1     b  [B
            0    3     2   off  I
            0    3     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.DataOutputStream this
         0: .line 123
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.flush:()V
         1: .line 124
            return
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/DataOutputStream;
    Exceptions:
      throws java.io.IOException

  public final void writeBoolean(boolean);
    descriptor: (Z)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.DataOutputStream this
        start local 1 // boolean v
         0: .line 139
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            iload 1 /* v */
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: java.io.OutputStream
         1: iconst_0
      StackMap locals: java.io.DataOutputStream int
      StackMap stack: java.io.OutputStream int
         2: invokevirtual java.io.OutputStream.write:(I)V
         3: .line 140
            aload 0 /* this */
            iconst_1
            invokevirtual java.io.DataOutputStream.incCount:(I)V
         4: .line 141
            return
        end local 1 // boolean v
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/io/DataOutputStream;
            0    5     1     v  Z
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public final void writeByte(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.DataOutputStream this
        start local 1 // int v
         0: .line 153
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            iload 1 /* v */
            invokevirtual java.io.OutputStream.write:(I)V
         1: .line 154
            aload 0 /* this */
            iconst_1
            invokevirtual java.io.DataOutputStream.incCount:(I)V
         2: .line 155
            return
        end local 1 // int v
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/io/DataOutputStream;
            0    3     1     v  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public final void writeShort(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.io.DataOutputStream this
        start local 1 // int v
         0: .line 167
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            iload 1 /* v */
            bipush 8
            iushr
            sipush 255
            iand
            invokevirtual java.io.OutputStream.write:(I)V
         1: .line 168
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            iload 1 /* v */
            iconst_0
            iushr
            sipush 255
            iand
            invokevirtual java.io.OutputStream.write:(I)V
         2: .line 169
            aload 0 /* this */
            iconst_2
            invokevirtual java.io.DataOutputStream.incCount:(I)V
         3: .line 170
            return
        end local 1 // int v
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/DataOutputStream;
            0    4     1     v  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public final void writeChar(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.io.DataOutputStream this
        start local 1 // int v
         0: .line 182
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            iload 1 /* v */
            bipush 8
            iushr
            sipush 255
            iand
            invokevirtual java.io.OutputStream.write:(I)V
         1: .line 183
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            iload 1 /* v */
            iconst_0
            iushr
            sipush 255
            iand
            invokevirtual java.io.OutputStream.write:(I)V
         2: .line 184
            aload 0 /* this */
            iconst_2
            invokevirtual java.io.DataOutputStream.incCount:(I)V
         3: .line 185
            return
        end local 1 // int v
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/DataOutputStream;
            0    4     1     v  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public final void writeInt(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.io.DataOutputStream this
        start local 1 // int v
         0: .line 197
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            iload 1 /* v */
            bipush 24
            iushr
            sipush 255
            iand
            invokevirtual java.io.OutputStream.write:(I)V
         1: .line 198
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            iload 1 /* v */
            bipush 16
            iushr
            sipush 255
            iand
            invokevirtual java.io.OutputStream.write:(I)V
         2: .line 199
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            iload 1 /* v */
            bipush 8
            iushr
            sipush 255
            iand
            invokevirtual java.io.OutputStream.write:(I)V
         3: .line 200
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            iload 1 /* v */
            iconst_0
            iushr
            sipush 255
            iand
            invokevirtual java.io.OutputStream.write:(I)V
         4: .line 201
            aload 0 /* this */
            iconst_4
            invokevirtual java.io.DataOutputStream.incCount:(I)V
         5: .line 202
            return
        end local 1 // int v
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/io/DataOutputStream;
            0    6     1     v  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public final void writeLong(long);
    descriptor: (J)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // java.io.DataOutputStream this
        start local 1 // long v
         0: .line 216
            aload 0 /* this */
            getfield java.io.DataOutputStream.writeBuffer:[B
            iconst_0
            lload 1 /* v */
            bipush 56
            lushr
            l2i
            i2b
            bastore
         1: .line 217
            aload 0 /* this */
            getfield java.io.DataOutputStream.writeBuffer:[B
            iconst_1
            lload 1 /* v */
            bipush 48
            lushr
            l2i
            i2b
            bastore
         2: .line 218
            aload 0 /* this */
            getfield java.io.DataOutputStream.writeBuffer:[B
            iconst_2
            lload 1 /* v */
            bipush 40
            lushr
            l2i
            i2b
            bastore
         3: .line 219
            aload 0 /* this */
            getfield java.io.DataOutputStream.writeBuffer:[B
            iconst_3
            lload 1 /* v */
            bipush 32
            lushr
            l2i
            i2b
            bastore
         4: .line 220
            aload 0 /* this */
            getfield java.io.DataOutputStream.writeBuffer:[B
            iconst_4
            lload 1 /* v */
            bipush 24
            lushr
            l2i
            i2b
            bastore
         5: .line 221
            aload 0 /* this */
            getfield java.io.DataOutputStream.writeBuffer:[B
            iconst_5
            lload 1 /* v */
            bipush 16
            lushr
            l2i
            i2b
            bastore
         6: .line 222
            aload 0 /* this */
            getfield java.io.DataOutputStream.writeBuffer:[B
            bipush 6
            lload 1 /* v */
            bipush 8
            lushr
            l2i
            i2b
            bastore
         7: .line 223
            aload 0 /* this */
            getfield java.io.DataOutputStream.writeBuffer:[B
            bipush 7
            lload 1 /* v */
            iconst_0
            lushr
            l2i
            i2b
            bastore
         8: .line 224
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            aload 0 /* this */
            getfield java.io.DataOutputStream.writeBuffer:[B
            iconst_0
            bipush 8
            invokevirtual java.io.OutputStream.write:([BII)V
         9: .line 225
            aload 0 /* this */
            bipush 8
            invokevirtual java.io.DataOutputStream.incCount:(I)V
        10: .line 226
            return
        end local 1 // long v
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Ljava/io/DataOutputStream;
            0   11     1     v  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public final void writeFloat(float);
    descriptor: (F)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.DataOutputStream this
        start local 1 // float v
         0: .line 242
            aload 0 /* this */
            fload 1 /* v */
            invokestatic java.lang.Float.floatToIntBits:(F)I
            invokevirtual java.io.DataOutputStream.writeInt:(I)V
         1: .line 243
            return
        end local 1 // float v
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/DataOutputStream;
            0    2     1     v  F
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public final void writeDouble(double);
    descriptor: (D)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.io.DataOutputStream this
        start local 1 // double v
         0: .line 259
            aload 0 /* this */
            dload 1 /* v */
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            invokevirtual java.io.DataOutputStream.writeLong:(J)V
         1: .line 260
            return
        end local 1 // double v
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/DataOutputStream;
            0    2     1     v  D
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public final void writeBytes(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // java.io.DataOutputStream this
        start local 1 // java.lang.String s
         0: .line 274
            aload 1 /* s */
            invokevirtual java.lang.String.length:()I
            istore 2 /* len */
        start local 2 // int len
         1: .line 275
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 276
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            aload 1 /* s */
            iload 3 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            i2b
            invokevirtual java.io.OutputStream.write:(I)V
         4: .line 275
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            iload 2 /* len */
            if_icmplt 3
        end local 3 // int i
         6: .line 278
            aload 0 /* this */
            iload 2 /* len */
            invokevirtual java.io.DataOutputStream.incCount:(I)V
         7: .line 279
            return
        end local 2 // int len
        end local 1 // java.lang.String s
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljava/io/DataOutputStream;
            0    8     1     s  Ljava/lang/String;
            1    8     2   len  I
            2    6     3     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      s     

  public final void writeChars(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // java.io.DataOutputStream this
        start local 1 // java.lang.String s
         0: .line 294
            aload 1 /* s */
            invokevirtual java.lang.String.length:()I
            istore 2 /* len */
        start local 2 // int len
         1: .line 295
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 7
         3: .line 296
      StackMap locals: int int
      StackMap stack:
            aload 1 /* s */
            iload 3 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            istore 4 /* v */
        start local 4 // int v
         4: .line 297
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            iload 4 /* v */
            bipush 8
            iushr
            sipush 255
            iand
            invokevirtual java.io.OutputStream.write:(I)V
         5: .line 298
            aload 0 /* this */
            getfield java.io.DataOutputStream.out:Ljava/io/OutputStream;
            iload 4 /* v */
            iconst_0
            iushr
            sipush 255
            iand
            invokevirtual java.io.OutputStream.write:(I)V
        end local 4 // int v
         6: .line 295
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            iload 2 /* len */
            if_icmplt 3
        end local 3 // int i
         8: .line 300
            aload 0 /* this */
            iload 2 /* len */
            iconst_2
            imul
            invokevirtual java.io.DataOutputStream.incCount:(I)V
         9: .line 301
            return
        end local 2 // int len
        end local 1 // java.lang.String s
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Ljava/io/DataOutputStream;
            0   10     1     s  Ljava/lang/String;
            1   10     2   len  I
            2    8     3     i  I
            4    6     4     v  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      s     

  public final void writeUTF(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.DataOutputStream this
        start local 1 // java.lang.String str
         0: .line 323
            aload 1 /* str */
            aload 0 /* this */
            invokestatic java.io.DataOutputStream.writeUTF:(Ljava/lang/String;Ljava/io/DataOutput;)I
            pop
         1: .line 324
            return
        end local 1 // java.lang.String str
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/DataOutputStream;
            0    2     1   str  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      str   

  static int writeUTF(java.lang.String, java.io.DataOutput);
    descriptor: (Ljava/lang/String;Ljava/io/DataOutput;)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=8, args_size=2
        start local 0 // java.lang.String str
        start local 1 // java.io.DataOutput out
         0: .line 347
            aload 0 /* str */
            invokevirtual java.lang.String.length:()I
            istore 2 /* strlen */
        start local 2 // int strlen
         1: .line 348
            iconst_0
            istore 3 /* utflen */
        start local 3 // int utflen
         2: .line 349
            iconst_0
            istore 5 /* count */
        start local 5 // int count
         3: .line 352
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         4: goto 14
         5: .line 353
      StackMap locals: java.lang.String java.io.DataOutput int int top int int
      StackMap stack:
            aload 0 /* str */
            iload 6 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            istore 4 /* c */
        start local 4 // int c
         6: .line 354
            iload 4 /* c */
            iconst_1
            if_icmplt 9
            iload 4 /* c */
            bipush 127
            if_icmpgt 9
         7: .line 355
            iinc 3 /* utflen */ 1
         8: .line 356
            goto 13
      StackMap locals: java.lang.String java.io.DataOutput int int int int int
      StackMap stack:
         9: iload 4 /* c */
            sipush 2047
            if_icmple 12
        10: .line 357
            iinc 3 /* utflen */ 3
        11: .line 358
            goto 13
        12: .line 359
      StackMap locals:
      StackMap stack:
            iinc 3 /* utflen */ 2
        13: .line 352
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
        end local 4 // int c
      StackMap locals: java.lang.String java.io.DataOutput int int top int int
      StackMap stack:
        14: iload 6 /* i */
            iload 2 /* strlen */
            if_icmplt 5
        end local 6 // int i
        15: .line 363
            iload 3 /* utflen */
            ldc 65535
            if_icmple 19
        16: .line 364
            new java.io.UTFDataFormatException
            dup
        17: .line 365
            new java.lang.StringBuilder
            dup
            ldc "encoded string too long: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 3 /* utflen */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " bytes"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        18: .line 364
            invokespecial java.io.UTFDataFormatException.<init>:(Ljava/lang/String;)V
            athrow
        19: .line 367
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 6 /* bytearr */
        start local 6 // byte[] bytearr
        20: .line 368
            aload 1 /* out */
            instanceof java.io.DataOutputStream
            ifeq 26
        21: .line 369
            aload 1 /* out */
            checkcast java.io.DataOutputStream
            astore 7 /* dos */
        start local 7 // java.io.DataOutputStream dos
        22: .line 370
            aload 7 /* dos */
            getfield java.io.DataOutputStream.bytearr:[B
            ifnull 23
            aload 7 /* dos */
            getfield java.io.DataOutputStream.bytearr:[B
            arraylength
            iload 3 /* utflen */
            iconst_2
            iadd
            if_icmpge 24
        23: .line 371
      StackMap locals: byte[] java.io.DataOutputStream
      StackMap stack:
            aload 7 /* dos */
            iload 3 /* utflen */
            iconst_2
            imul
            iconst_2
            iadd
            newarray 8
            putfield java.io.DataOutputStream.bytearr:[B
        24: .line 372
      StackMap locals:
      StackMap stack:
            aload 7 /* dos */
            getfield java.io.DataOutputStream.bytearr:[B
            astore 6 /* bytearr */
        end local 7 // java.io.DataOutputStream dos
        25: .line 373
            goto 27
        26: .line 374
      StackMap locals:
      StackMap stack:
            iload 3 /* utflen */
            iconst_2
            iadd
            newarray 8
            astore 6 /* bytearr */
        27: .line 377
      StackMap locals:
      StackMap stack:
            aload 6 /* bytearr */
            iload 5 /* count */
            iinc 5 /* count */ 1
            iload 3 /* utflen */
            bipush 8
            iushr
            sipush 255
            iand
            i2b
            bastore
        28: .line 378
            aload 6 /* bytearr */
            iload 5 /* count */
            iinc 5 /* count */ 1
            iload 3 /* utflen */
            iconst_0
            iushr
            sipush 255
            iand
            i2b
            bastore
        29: .line 380
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        30: .line 381
            iconst_0
            istore 7 /* i */
            goto 35
        31: .line 382
      StackMap locals: int
      StackMap stack:
            aload 0 /* str */
            iload 7 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            istore 4 /* c */
        start local 4 // int c
        32: .line 383
            iload 4 /* c */
            iconst_1
            if_icmplt 49
            iload 4 /* c */
            bipush 127
            if_icmple 33
            goto 49
        33: .line 384
      StackMap locals: java.lang.String java.io.DataOutput int int int int byte[] int
      StackMap stack:
            aload 6 /* bytearr */
            iload 5 /* count */
            iinc 5 /* count */ 1
            iload 4 /* c */
            i2b
            bastore
        34: .line 381
            iinc 7 /* i */ 1
        end local 4 // int c
      StackMap locals: java.lang.String java.io.DataOutput int int top int byte[] int
      StackMap stack:
        35: iload 7 /* i */
            iload 2 /* strlen */
            if_icmplt 31
        36: .line 387
            goto 49
        37: .line 388
      StackMap locals:
      StackMap stack:
            aload 0 /* str */
            iload 7 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            istore 4 /* c */
        start local 4 // int c
        38: .line 389
            iload 4 /* c */
            iconst_1
            if_icmplt 41
            iload 4 /* c */
            bipush 127
            if_icmpgt 41
        39: .line 390
            aload 6 /* bytearr */
            iload 5 /* count */
            iinc 5 /* count */ 1
            iload 4 /* c */
            i2b
            bastore
        40: .line 392
            goto 48
      StackMap locals: java.lang.String java.io.DataOutput int int int int byte[] int
      StackMap stack:
        41: iload 4 /* c */
            sipush 2047
            if_icmple 46
        42: .line 393
            aload 6 /* bytearr */
            iload 5 /* count */
            iinc 5 /* count */ 1
            sipush 224
            iload 4 /* c */
            bipush 12
            ishr
            bipush 15
            iand
            ior
            i2b
            bastore
        43: .line 394
            aload 6 /* bytearr */
            iload 5 /* count */
            iinc 5 /* count */ 1
            sipush 128
            iload 4 /* c */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        44: .line 395
            aload 6 /* bytearr */
            iload 5 /* count */
            iinc 5 /* count */ 1
            sipush 128
            iload 4 /* c */
            iconst_0
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        45: .line 396
            goto 48
        46: .line 397
      StackMap locals:
      StackMap stack:
            aload 6 /* bytearr */
            iload 5 /* count */
            iinc 5 /* count */ 1
            sipush 192
            iload 4 /* c */
            bipush 6
            ishr
            bipush 31
            iand
            ior
            i2b
            bastore
        47: .line 398
            aload 6 /* bytearr */
            iload 5 /* count */
            iinc 5 /* count */ 1
            sipush 128
            iload 4 /* c */
            iconst_0
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        48: .line 387
      StackMap locals:
      StackMap stack:
            iinc 7 /* i */ 1
        end local 4 // int c
      StackMap locals: java.lang.String java.io.DataOutput int int top int byte[] int
      StackMap stack:
        49: iload 7 /* i */
            iload 2 /* strlen */
            if_icmplt 37
        50: .line 401
            aload 1 /* out */
            aload 6 /* bytearr */
            iconst_0
            iload 3 /* utflen */
            iconst_2
            iadd
            invokeinterface java.io.DataOutput.write:([BII)V
        51: .line 402
            iload 3 /* utflen */
            iconst_2
            iadd
            ireturn
        end local 7 // int i
        end local 6 // byte[] bytearr
        end local 5 // int count
        end local 3 // int utflen
        end local 2 // int strlen
        end local 1 // java.io.DataOutput out
        end local 0 // java.lang.String str
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   52     0      str  Ljava/lang/String;
            0   52     1      out  Ljava/io/DataOutput;
            1   52     2   strlen  I
            2   52     3   utflen  I
            6   14     4        c  I
           32   35     4        c  I
           38   49     4        c  I
            3   52     5    count  I
            4   15     6        i  I
           20   52     6  bytearr  [B
           22   25     7      dos  Ljava/io/DataOutputStream;
           30   52     7        i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      str   
      out   

  public final int size();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.DataOutputStream this
         0: .line 414
            aload 0 /* this */
            getfield java.io.DataOutputStream.written:I
            ireturn
        end local 0 // java.io.DataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/DataOutputStream;
}
SourceFile: "DataOutputStream.java"