0
要執行反序列化,我需要一個ObjectInputStream
。但我們只是使用AsynchronousSocketChannel
,它不能轉換爲ObjectInputStream
。我能做什麼?如何從AsynchronousSocketChannel反序列化Serializable對象
要執行反序列化,我需要一個ObjectInputStream
。但我們只是使用AsynchronousSocketChannel
,它不能轉換爲ObjectInputStream
。我能做什麼?如何從AsynchronousSocketChannel反序列化Serializable對象
您可以通過Channels.newInputStream(channel)
將AsynchronousSocketChannel
轉換爲InputStream
。