Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有使用ObjectInputStream. 我看到的示例似乎依赖于捕获异常来结束阅读。虽然它可能有效,但它似乎不是一个干净的解决方案,因为除非代码中存在错误,否则不应真正发生异常。
ObjectInputStream
示例 1
EOFException由readObject()方法抛出以指示流结束。因此,您必须抓住它才能检测到流的结束。QED。别介意例外警察。
EOFException
readObject()