从调制解调器 (AT) 获取易于阅读的答案
我是 Java 程序员。我尝试从我的拨号调制解调器 Acorp 获取答案。发送 AT 命令并查看调制解调器是否正常工作。我使用 InputStream 阅读答案,得到以下结果:[B@127734f
它是什么?为什么调制解调器不发送“OK
”???。 谢谢
I'm Java programmer. I try to get answer from my dial-up modem Acorp. Send AT-commands and see, that modem work correctly. I read answer using InputStream and I get this: [B@127734f
What is it? Why modem did'n send "OK
"???.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它可能已经完成了 - 但看起来您只是在字节数组上调用
toString()
。不要这样做 - 如果您想将字节数组的内容转换为文本,请使用String
构造函数。例如:It may well have done - but it looks like you're just calling
toString()
on a byte array. Don't do that - if you want to convert the contents of a byte array to text, use aString
constructor. For example: