- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在两个设备之间建立蓝牙连接,但到目前为止我还没有成功。
ATM 我在两部手机上都有一个应用程序,根据蓝牙地址,一部应该发送信息,另一部应该接收信息。
我希望它像这样工作:在接收器手机上打开应用程序,它将等待并收听直到发生某些事情,然后在发射器手机上打开应用程序,它将连接到接收器并传输消息。
注意:该应用目前在一部手机上运行 Android 5,在另一部手机上运行 4.3。
更新:我在 SeahawksRdaBest 的帮助下尝试了一些新的东西,现在我遇到了新的错误,所以这里是新的代码和日志:
package com.example.xxxxx;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.util.UUID;
import android.annotation.TargetApi;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.BluetoothSocket;
import android.os.Build;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.support.v4.app.Fragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
@TargetApi(Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1)
public class BluetoothClass extends Fragment{
BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
BluetoothDevice selectedDevice;
protected static final int SUCCESS_CONNECT = 0;
protected static final int MESSAGE_READ = 1;
final int STATE_CONNECTED = 2;
final int STATE_CONNECTING = 1;
final int STATE_DISCONNECTED = 0;
private final UUID MY_UUID = UUID.fromString("8ce255c0-200a-11e0-ac64-0800200c9a66");
public byte[] completeData;
double totalDistance = 0;
int wheelRotations=0;
private static final String address = "00:EE:BD:D1:66:45"; // Phone 1
private static final String address2 = "18:E2:C2:31:08:AC"; // Phone 2
private static final String TAG = "BTLOG";
Handler mHandler = new Handler(){
public void handleMessage(Message msg){
super.handleMessage(msg);
switch(msg.what){
case SUCCESS_CONNECT:
Log.i(TAG, "CONNECTED");
break;
case MESSAGE_READ:
byte[] readBuf = (byte[])msg.obj;
Log.v(TAG, "READING: "+readBuf.toString());
}
}
};
public void onCreate(Bundle savedInstance){
super.onCreate(savedInstance);
}
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
View rootview = inflater.inflate(R.layout.bluetooth, container,false);
rootview.findViewById(R.id.connectDevice).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
BluetoothDevice selectedDevice = null;
// If hardcoded device 1, then connect to device 2, or other way around
if (mBluetoothAdapter.getAddress().equals(address)) {
selectedDevice = selectedDevice(address2);
}
else if (mBluetoothAdapter.getAddress().equals(address2)) {
selectedDevice = selectedDevice(address);
}
mBluetoothAdapter.cancelDiscovery();
ConnectThread ct = new ConnectThread(selectedDevice);
ct.start();
}
});
return rootview;
}
public void onActivityCreared(Bundle savedInstanceState){
super.onActivityCreated(savedInstanceState);
}
public void onStart(){
super.onStart();
}
public void onResume(){
super.onStart();
}
public void onStop(){
super.onStart();
}
// Get bluetooth device from known address
public BluetoothDevice selectedDevice(String deviceAddress){
mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
BluetoothDevice device;
device = mBluetoothAdapter.getRemoteDevice(deviceAddress);
return device;
}
public class ConnectThread extends Thread {
private final BluetoothSocket mmSocket;
private BluetoothSocket tmp;
private final BluetoothDevice mmDevice;
public ConnectThread(BluetoothDevice device) {
mmDevice = device;
try {
tmp = mmDevice.createRfcommSocketToServiceRecord(MY_UUID);
} catch (IOException e) {
Log.e(TAG, "Failed to create temporary socket");
e.printStackTrace();
}
mmSocket = tmp;
Log.i(TAG, "Finished creating socket");
}
public void run() {
mBluetoothAdapter.cancelDiscovery();
Log.i(TAG, "Connecting through socket");
try {
mmSocket.connect();
} catch (IOException connectException) {
Log.e(TAG, "Connection through socket failed: "+connectException);
Log.i(TAG, "Trying fallback method");
try {
// fallback method for android >= 4.2
tmp = (BluetoothSocket) mmDevice.getClass().getMethod("createRfcommSocket", new Class[] {int.class}).invoke(mmDevice,1);
} catch (IllegalAccessException e) {
Log.e(TAG, "Failed to create fallback Illegal Access: "+e);
return;
} catch (IllegalArgumentException e) {
Log.e(TAG, "Failed to create fallback Illegal Argument: "+e);
return;
} catch (InvocationTargetException e) {
Log.e(TAG, "Failed to create fallback Invocation Target"+e);
return;
} catch (NoSuchMethodException e) {
Log.e(TAG, "Failed to create fallback No Such Method"+e);
return;
}
try {
// linked to tmp, so basicly a new socket
mmSocket.connect();
} catch (IOException e) {
Log.e(TAG, "Failed to connect with fallback socket: "+e);
return;
}
Log.i(TAG, "Succesfully connected with fallback socket");
mHandler.obtainMessage(SUCCESS_CONNECT, mmSocket).sendToTarget();
return;
}
Log.i(TAG, "Succesfully connected with original socket");
mHandler.obtainMessage(SUCCESS_CONNECT, mmSocket).sendToTarget();
}
}
}
LogCat 日志:
11-23 14:03:56.281: I/BTLOG(12107): Finished creating socket
11-23 14:03:56.281: I/BTLOG(12107): Connecting through socket
11-23 14:03:56.286: D/BluetoothUtils(12107): isSocketAllowedBySecurityPolicy start : device null
11-23 14:03:56.286: W/BluetoothAdapter(12107): getBluetoothService() called with no BluetoothManagerCallback
11-23 14:03:59.696: E/BTLOG(12107): Connection through socket failed: java.io.IOException: read failed, socket might closed or timeout, read ret: -1
11-23 14:03:59.696: I/BTLOG(12107): Trying fallback method
11-23 14:03:59.701: D/BluetoothUtils(12107): isSocketAllowedBySecurityPolicy start : device null
11-23 14:03:59.701: W/BluetoothAdapter(12107): getBluetoothService() called with no BluetoothManagerCallback
11-23 14:03:59.761: E/BTLOG(12107): Failed to connect with fallback socket: java.io.IOException: read failed, socket might closed or timeout, read ret: -1
最佳答案
嗯,一个潜在的问题是您没有对重复消息使用任何类型的“处理程序”。你需要一个 handler反对始终处理传入流,否则您会遇到套接字关闭问题。
我的意思是:
/*
* Bluetooth Connection Threads
*/
public class ConnectThread extends Thread {
private final BluetoothSocket mmSocket;
private final BluetoothDevice mmDevice;
public ConnectThread(BluetoothDevice device) {
/*
* Use a temporary object that is later assigned to mmSocket,
* because mmSocket is final
*/
BluetoothSocket tmp = null;
mmDevice = device;
// Get a BluetoothSocket to connect with the given BluetoothDevice
try {
// MY_UUID is the app's UUID string, also used by the server code
tmp = device.createRfcommSocketToServiceRecord(MY_UUID);
} catch (IOException e) { }
mmSocket = tmp;
}
public void run() {
// Cancel discovery because it will slow down the connection
mBluetoothAdapter.cancelDiscovery();
try {
// Connect the device through the socket. This will block
// until it succeeds or throws an exception
mmSocket.connect();
} catch (IOException connectException) {
// Unable to connect; close the socket and get out
try {
mmSocket.close();
} catch (IOException closeException) {
Toast.makeText(getActivity(), "Connecting to device failed!", Toast.LENGTH_LONG).show();
}
return;
}
// Do work to manage the connection (in a separate thread)
mHandler.obtainMessage(SUCCESS_CONNECT, mmSocket).sendToTarget();
}
/** Will cancel an in-progress connection, and close the socket */
public void cancel() {
try {
mmSocket.close();
} catch (IOException e) { }
}
}
连接后要做什么??
private class ConnectedThread extends Thread {
private final BluetoothSocket mmSocket;
private final InputStream mmInStream;
private final OutputStream mmOutStream;
public ConnectedThread(BluetoothSocket socket) {
mmSocket = socket;
InputStream tmpIn = null;
OutputStream tmpOut = null;
// Get the input and output streams, using temp objects because
// member streams are final
try {
tmpIn = socket.getInputStream();
tmpOut = socket.getOutputStream();
} catch (IOException e) { }
mmInStream = tmpIn;
mmOutStream = tmpOut;
}
public void run() {
byte[] buffer; // buffer store for the stream
int bytes; // bytes returned from read()
// Keep listening to the InputStream until an exception occurs
while (true) {
try {
// Read from the InputStream
// This is app specific your logic here
// Pass Handler Looper here
mHandler.obtainMessage(MESSAGE_READ, buffer).sendToTarget();
}
catch (IOException e) {
break;
}
}
}
/* Call this from the main activity to send data to the remote device */
public void write(byte[] bytes) {
try {
mmOutStream.write(bytes);
} catch (IOException e) { }
}
}
处理程序:
/*
* Bluetooth Handler Method
*/
ConnectedThread connectedThread;
Handler mHandler = new Handler(){
public void handleMessage(Message msg){
super.handleMessage(msg);
switch(msg.what){
case SUCCESS_CONNECT:
// Do Something;
Toast.makeText(getActivity(),"CONNECTED",Toast.LENGTH_SHORT).show();
/*
* For loop for test values
*/
connectedThread = new ConnectedThread((BluetoothSocket)msg.obj);
listView.setVisibility(View.GONE);
connectedThread.start();
break;
case MESSAGE_READ:
// What to do with app specific data handling??
}
}
};
查看我的 github一个工作蓝牙的例子。###Update###
好吧,有几件事,
首先,我认为您不需要像我一样使用 fragment 。我需要多个 Activity 相互通信,而另一方面,您的项目可能只需要一个。 (您仍然可以使用 fragment 的概念,但要确保您的调用 Activity 在调用 fragment 时正常工作)。看我的回答here有关 fragment 的更多信息。
现在, 您完全了解蓝牙通信的工作原理吗?要理解这一点,请阅读有关 java threads 的内容.因为这就是上面代码的基础。
因此,如果您仔细阅读它告诉您的日志,您正在尝试连接到一个 NULL
设备。显然你不能那样做。请记住,您必须将蓝牙设备对象传递给 ConnectThread。我相信这就是你的问题所在。您没有正确解析地址。传递正确地址的最佳方法是将两部手机相互配对。配对后,您可以从手机内存中提取正确格式的地址并将其传递给连接管理器。
试试这个:
//Define a Set, which is a unique list (don't forget to initialize it!)
Set<BluetoothDevice> pairedDevices;
在onCreateView()中,
public void onCreateView(..){
pairedDevices = mBluetoothAdapter.getBondedDevices();
// Your additional code //
/*Now you have a set containing the correct address of the paired devices to your phone,
I would recommend unpair all devices except the one you are concered with this makes life easier
as then you know the first (& only) device in the pairedDevice array is the one you want to
connect with.
*/
// Now simply pass the Set item to your ConnectThread
ConnectThread ct = new ConnectThread(pairedDevices[0])
ct.start();
}
我制作的 Selected device 方法被构造为从 ListView 中获取设备地址。我专门创建了那个方法,这样我就可以看到我试图连接的设备。您只是不能复制粘贴代码并期望它能正常工作。确认您的 pairedDevice 集已填充也是一个好主意。我会让你弄清楚如何确认这一点。
关于android - 两个设备之间的蓝牙数据传输不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27081820/
我需要修复 getLineNumberFor 方法,以便如果 lastName 的第一个字符位于 A 和 M 之间,则返回 1;如果它位于 N 和 Z 之间,则返回 2。 在我看来听起来很简单,但我不
您好,感谢您的帮助!我有这个: 0 我必须在每次点击后增加“pinli
Javascript 中是否有一种方法可以在不使用 if 语句的情况下通过 switch case 结构将一个整数与另一个整数进行比较? 例如。 switch(integer) { case
我有一列是“日期”类型的。如何在自定义选项中使用“之间”选项? 最佳答案 请注意,您有2个盒子。 between(在SQL中)包含所有内容,因此将框1设置为:DATE >= startdate,将框2
我有一个表,其中包含年、月和一些数字列 Year Month Total 2011 10 100 2011 11 150 2011 12 100 20
这个问题已经有答案了: Extract a substring between double quotes with regular expression in Java (2 个回答) how to
我有一个带有类别的边栏。正如你在这里看到的:http://kees.een-site-bouwen.nl/ url 中类别的 ID。带有 uri 段(3)当您单击其中一个类别时,例如网页设计。显示了一
这个问题在这里已经有了答案: My regex is matching too much. How do I make it stop? [duplicate] (5 个答案) 关闭 4 年前。 我
我很不会写正则表达式。 我正在尝试获取括号“()”之间的值。像下面这样的东西...... $a = "POLYGON((1 1,2 2,3 3,1 1))"; preg_match_all("/\((
我必须添加一个叠加层 (ImageView),以便它稍微移动到包含布局的左边界的左侧。 执行此操作的最佳方法是什么? 尝试了一些简单的方法,比如将 ImageView 放在布局中并使用负边距 andr
Rx 中是否有一些扩展方法来完成下面的场景? 我有一个开始泵送的值(绿色圆圈)和其他停止泵送的值(簧片圆圈),蓝色圆圈应该是预期值,我不希望这个命令被取消并重新创建(即“TakeUntil”和“Ski
我有一个看起来像这样的数据框(Dataframe X): id number found 1 5225 NA 2 2222 NA 3 3121 NA 我有另一个看起来
所以,我正在尝试制作正则表达式,它将解析存储在对象中的所有全局函数声明,例如,像这样 const a = () => {} 我做了这样的事情: /(?:const|let|var)\s*([A-z0-
我正在尝试从 Intellivision 重新创建 Astro-Smash,我想让桶保持在两个 Angular 之间。我只是想不出在哪里以及如何让这个东西停留在两者之间。 我已经以各种方式交换了函数,
到处检查但找不到答案。 我有这个页面,我使用 INNER JOIN 将两个表连接在一起,获取它们的值并显示它们。我有这个表格,用来获取变量(例如开始日期、结束日期和卡号),这些变量将作为从表中调用值的
我陷入了两个不同的问题/错误之间,无法想出一个合适的解决方案。任何帮助将不胜感激 上下文、FFI 和调用大量 C 函数,并将 C 类型包装在 rust 结构中。 第一个问题是ICE: this pat
我在 MySQL 中有一个用户列表,在订阅时,时间戳是使用 CURRENT_TIMESTAMP 在数据库中设置的。 现在我想从此表中选择订阅日期介于第 X 天和第 Y 天之间的表我尝试了几个查询,但不
我的输入是开始日期和结束日期。我想检查它是在 12 月 1 日到 3 月 31 日之间。(年份可以更改,并且只有在此期间内或之外的日期)。 到目前为止,我还没有找到任何关于 Joda-time 的解决
我正在努力了解线程与 CPU 使用率的关系。有很多关于线程与多处理的讨论(一个很好的概述是 this answer )所以我决定通过在运行 Windows 10、Python 3.4 的 8 CPU
我正在尝试编写 PHP 代码来循环遍历数组以创建 HTML 表格。我一直在尝试做类似的事情: fetchAll(PDO::FETCH_ASSOC); ?>
我是一名优秀的程序员,十分优秀!