通常我们可以使用蓝牙聊天应用在两个Android设备之间发送消息。
我想发送用户名和密码而不是正常消息,同时接收方应该收到该消息。
全部通过蓝牙
答案 0 :(得分:2)
只需将数据放入单个字符串中......例如JSON。
JSONObject data = new JSONObject();
data.put("username", uname);
data.put("passwd", pass);
// bluetooth.send(data.toString());
// String msg = bluetooth.receive();
JSONObject data = new JSONObject(msg);
String uname = data.getString("username");