ZK是一个Ajax Java Web框架
源代码在线查看: forward-cond.zul
forward-cond.zul {{IS_NOTE Purpose: Description: History: Sun Aug 19 13:35:03 2007, Created by tomyeh }}IS_NOTE Copyright (C) 2007 Potix Corporation. All Rights Reserved. {{IS_RIGHT }}IS_RIGHT --> onOK='alert(self.uuid+": onOk")' onCancel='alert(self.uuid+": onCancel")'> ${w.uuid} int cnt = 0; Object n = w.clone(); n.setId("dst" + ++cnt); vb.insertBefore(n, self); }]]> import java.io.*; ByteArrayOutputStream boa = new ByteArrayOutputStream(); new ObjectOutputStream(boa).writeObject(w); byte[] bs = boa.toByteArray(); Object n = new ObjectInputStream(new ByteArrayInputStream(bs)).readObject(); n.setId("dst" + ++cnt); vb.insertBefore(n, self); vb.insertBefore(new Label(bs.length+" bytes copied"), self); }]]>