zhyiwww
          用平實的筆,記錄編程路上的點點滴滴………
          posts - 536,comments - 394,trackbacks - 0

          The object to be serialized must implement java.io.Serializable. This example serializes a javax.swing.JButton object.

          See also e45 Deserializing an Object.

          				
          						Object object = new javax.swing.JButton("push me");
              
              try {
                  // Serialize to a file
                  ObjectOutput out = new ObjectOutputStream(new FileOutputStream("filename.ser"));
                  out.writeObject(object);
                  out.close();
              
                  // Serialize to a byte array
                  ByteArrayOutputStream bos = new ByteArrayOutputStream() ;
                  out = new ObjectOutputStream(bos) ;
                  out.writeObject(object);
                  out.close();
              
                  // Get the bytes of the serialized object
                  byte[] buf = bos.toByteArray();
              } catch (IOException e) {
              }
          				
          		


          |----------------------------------------------------------------------------------------|
                                     版權聲明  版權所有 @zhyiwww
                      引用請注明來源 http://www.aygfsteel.com/zhyiwww   
          |----------------------------------------------------------------------------------------|
          posted on 2006-06-13 12:09 zhyiwww 閱讀(312) 評論(0)  編輯  收藏 所屬分類: code demo -java
          主站蜘蛛池模板: 土默特左旗| 军事| 望谟县| 大荔县| 凯里市| 绥芬河市| 健康| 阿坝县| 新巴尔虎右旗| 丰原市| 福清市| 白水县| 申扎县| 普兰县| 周口市| 平江县| 镇安县| 贵港市| 龙海市| 金乡县| 萝北县| 林口县| 兰坪| 澎湖县| 社会| 固镇县| 河西区| 深圳市| 额尔古纳市| 商洛市| 吴江市| 弥勒县| 宜兴市| 光山县| 古浪县| 壶关县| 潢川县| 冷水江市| 西宁市| 青海省| 麻阳|