0

嗨!

我正在为我的毕业论文研究我的 NFC 项目,我想做两件事:

1)当我用手机点击 NFC 标签时,我希望手机上的浏览器将我连接到我的网站。

2)我想让我的 NFC 标签计算点击次数,以便稍后我可以使用我的 android 应用程序读取该数字并将其发送到我服务器上的数据库,这样我就可以统计我的 NFC 标签被点击了多少次。

我已经完成了我的第一个任务,当我点击 NFC 标签时,我的手机浏览器可以正确显示我的网站,但现在我的第二个任务有问题。我在互联网上搜索了一些教程,但我还没有找到任何好的教程如何编程 NFC 标签来计算点击次数,而且它不像网站 url 那样简单,所以我问自己,也许它甚至不可能做到。我认为,如果 NFC 标签可以保存网站的整个 URL,那么它必须可以保存单个整数并做一些基本Number_of_taps + = 1的事情。

如果有人知道好的解决方案或一些好的教程的链接,请发布。提前致谢!

4

2 回答 2

0

If you have an application which is enabled on your device, you're able to write numbers on the NFC tag of course. To do it, you'll have to detect the tag, authentificate if necessary, get the number you've stored, increment it and write it into the memory's tag.
You can find basic informations about tags and I/O operations here : http://developer.android.com/reference/android/nfc/tech/TagTechnology.html

于 2013-08-09T08:53:27.730 回答
0

结合此处的读取和写入示例,您应该能够创建一个计数器,该计数器递增存储在标签上的数字。另请参阅此研讨会的解决方案。

于 2013-08-11T16:12:28.080 回答