本文介绍了从NSE服务器解码数据包的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
亲爱的所有
我正在制作自己的应用程序来接收来自NSE服务器的数据包,我很成功。但我的问题是所有数据包都是字节格式。现在我如何获得任何公司(scrips)的实时报价来解码这些数据包。当我将这些字节存储在文本文件中时,它看起来像:
? YZ ** 123 @
如何从中获取实时信息。
我成功映射到结构
Dear all
I am making my own application to receive packet from NSE sever and i am success in it. But my problem is all the packets is in byte format. now how can I get LIVE quotes of any company(scrips)to decode these packets. When I store these bytes in text file it looks like :
YZ**123 @
How can I get Live feed from this .
I successfully map to the structure
Struct {
CHAR cNetId [2]
SHORT iNoPackets
CHAR cPackData [534]
} BcastPackData
我得到的iNoPackets值是256,但我无法用cPackData bcz映射我的字节数组长度是512 。请帮助我..
and i got iNoPackets value is 256, but i can't map with cPackData bcz my byte array length is 512. pls help me..
推荐答案
这篇关于从NSE服务器解码数据包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!