如何获取 Motorola (Symbol) 移动设备序列号?
如何获取 Motorola (Symbol) 移动设备序列号?
我正在对带有“符号”库的摩托罗拉 ES400 进行编程。
似乎有多种方法可以获取各种扫描仪的序列号,但不能获取实际设备本身的序列号!
有人有什么想法吗?
TerminalInfo返回的“序列号”(设备上显示的)和“电子序列号”有什么区别?
How to obtain a Motorola (Symbol) Mobile Device Serial Number?
I'm programming the Motorola ES400 which comes with "Symbol" libraries.
There seems to be ways of getting the serial numbers of the various scanners, but not of the actual device itself!
Anyone got any ideas?
Whats the difference between "serial number" (as shown on the device) and "electronic serial number" returned by TerminalInfo?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我刚刚在 MC9090 设备上处理了这个问题,该设备也使用符号库(不确定它们是否相同,但这值得一试)。我使用反射是因为我有来自不同制造商的设备并且希望运行相同的代码。您可以直接从属性访问此字段或使用反射:
这是属性所在的位置:
这是我使用反射的方法:
希望这会有所帮助!
I just dealt with this on the MC9090 device, which also uses the Symbol libraries (not sure if they are the same, but this is worth a shot). I used reflection because I have devices from different manufacturers and want the same code to run. You could access this field directly from the property or use reflection:
Here is where the property is:
Here is my method using reflection:
Hope this helps!
太棒了,谢谢。 Symbol SDK帮助搜索的时候没有找到这个!
刚刚使用:
Thats fantatic, thanks. The Symbol SDK help didn't find this when searching!
Just used:
还发现了这个:
Also found this:
这是快速简单的 VB.Net 解决方案:
添加对 Symbol.ResourceCoordination.dll 的引用(我在这里找到了我的:C:\Program Files\Motorola EMDK for .NET\v2.8\SDK\Smart Devices\Symbol.ResourceCoordination。 dll)。
然后使用以下代码访问ESN(电子序列号)值。
在我们的 MC3190S 扫描仪上运行良好! :)
Here's the quick and easy VB.Net solution:
Add a reference to Symbol.ResourceCoordination.dll (I found mine here: C:\Program Files\Motorola EMDK for .NET\v2.8\SDK\Smart Devices\Symbol.ResourceCoordination.dll).
Then use the following code to access the ESN (Electronic Serial Number) value.
Worked great on our MC3190S scanners! :)