I have Java code to receive data in Android App via Bluetooth like the attached code
so readMessage will equal = {\"Pin\":\"A4\",\"Value\":\"20\"},{\"Pin\":\"A5\",\"Value\":\"925\"},{\"Pin\":\"A0\",\"Value\":\"30\"}
So I want to take only the values after string \"Value\" from received data so
Can anyone suggest how to make do that? Thanks
you can parse the
readMessagewith JSON formatexample:
And if you want to manage them, you can make a
Listand add them all.