Sending files via bluetooth from winRT to android / WP devices

家住魔仙堡 提交于 2019-12-06 14:39:21

Just a brief note just now. OBEX has a protocol, it doesn't just send the file in the raw. I'll write more later but we see something like:

CONNECT->
<-OK
PUT+filename+data->
<-CONTINUE
PUT+FINAL+data->
<-OK
disconnect

You have to implement obex protocol Connect , put ,disconnect operations to do this. please refer This THREAD : Send data through Bluetooth windows 10 universal app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!