Java 使用 ObjectInputStream 读取不同的变量
我有一个 ObjectInputStream ,它需要读取两个不同的输入,即字符串和我自己创建的对象。我有一个线程不断等待输入,并根据输入(无论是字符串还是对象)来处理结果。我需要一种方法让输入能够区分两者。
任何帮助都会很棒。
谢谢
I have an ObjectInputStream which needs to read two different inputs which are a String and my own created object. I have a thread which constantly waits for an input and depending on the input be it a string or object it will process the result. I need a way for the input to be able to distinguish between the two.
Any help would be great.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
难道不是这样做的吗:
Isn't it a case of doing:
如果只有 Sting 和你的对象这两个选择,那么你可以尝试这个:
If the only two choices are Sting and your object then you can try this: