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
          主站蜘蛛池模板: 清镇市| 辉县市| 蛟河市| 荆门市| 德州市| 山阴县| 平邑县| 珠海市| 龙南县| 靖安县| 农安县| 浙江省| 黑龙江省| 全南县| 将乐县| 金湖县| 汽车| 灵台县| 台江县| 虞城县| 通河县| 吉木乃县| 双柏县| 尚志市| 江川县| 扎赉特旗| 胶南市| 施秉县| 明水县| 惠来县| 西乌珠穆沁旗| 古田县| 思茅市| 黔东| 高邮市| 潼南县| 牟定县| 浪卡子县| 太和县| 永顺县| 武冈市|