MkData.java
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:0k
源码类别:

编译器/解释器

开发平台:

Others

  1. import java.io.*;
  2. class MkData {
  3.   public static void main(String[] args) throws Exception {
  4.     byte data[] = {0,     // begin short
  5.    0x01, 0x12,
  6.    0x01,  // begin string
  7.    (byte)'a', (byte)' ', (byte)'t', (byte)'e',
  8.    (byte)'s', (byte)'t',
  9.    0x02   // end string
  10.     };
  11.     FileOutputStream f = new FileOutputStream("data");
  12.     f.write(data);
  13.     f.close();
  14.   }
  15. }