Created
December 22, 2020 04:19
-
-
Save testanull/fe0d8a0e5e52e26dc398f5ce14000bc8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import flex.messaging.io.SerializationContext; | |
import flex.messaging.io.amf.*; | |
import org.apache.commons.collections.LRUMap; | |
import java.io.*; | |
public class Test0 { | |
public static void main(String[] args) throws Exception{ | |
LRUMap lruMap = new LRUMap(); | |
byte[] ser = serialize(lruMap); | |
FileOutputStream fileOutputStream = new FileOutputStream("emp.ser"); | |
fileOutputStream.write(ser); | |
fileOutputStream.close(); | |
} | |
public static byte[] serialize(Object data) throws IOException { | |
MessageBody body = new MessageBody(); | |
body.setData(data); | |
ActionMessage message = new ActionMessage(); | |
message.addBody(body); | |
ByteArrayOutputStream out = new ByteArrayOutputStream(); | |
AmfMessageSerializer serializer = new AmfMessageSerializer(); | |
serializer.initialize(SerializationContext.getSerializationContext(), out, null); | |
serializer.writeMessage(message); | |
return out.toByteArray(); | |
} | |
public static void deserialize(byte[] amf) throws ClassNotFoundException, IOException { | |
ByteArrayInputStream in = new ByteArrayInputStream(amf); | |
AmfMessageDeserializer deserializer = new AmfMessageDeserializer(); | |
deserializer.initialize(SerializationContext.getSerializationContext(), in, null); | |
deserializer.readMessage(new ActionMessage(), new ActionContext()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment