电脑知识|欧美黑人一区二区三区|软件|欧美黑人一级爽快片淫片高清|系统|欧美黑人狂野猛交老妇|数据库|服务器|编程开发|网络运营|知识问答|技术教程文章 - 好吧啦网

您的位置:首頁技術(shù)文章
文章詳情頁

Android在類微信程序中實(shí)現(xiàn)藍(lán)牙聊天功能的示例代碼

瀏覽:160日期:2022-06-06 18:17:16

項目要求

1.初次打開程序時右上角標(biāo)題欄顯示“無連接”,點(diǎn)擊旁邊的按鈕選擇“我的好友”,進(jìn)入配對界面;2.選擇好友之后,返回主界面,標(biāo)題欄會顯示已連接的手機(jī)型號;3.兩部手機(jī)間可通過藍(lán)牙聊天

效果展示

Android在類微信程序中實(shí)現(xiàn)藍(lán)牙聊天功能的示例代碼Android在類微信程序中實(shí)現(xiàn)藍(lán)牙聊天功能的示例代碼

項目結(jié)構(gòu)

Android在類微信程序中實(shí)現(xiàn)藍(lán)牙聊天功能的示例代碼

主要代碼

1.在清單文件中注冊權(quán)限

<uses-permission android:name='android.permission.BLUETOOTH_ADMIN' /><uses-permission android:name='android.permission.BLUETOOTH' />

2.在文件res / values / strings.xml里,添加程序運(yùn)行過程中的狀態(tài)描述文本及配色代碼等

<?xml version='1.0' encoding='utf-8'?><resources> <string name='app_name'>藍(lán)牙Demo</string> <string name='send'>發(fā)送</string> <string name='not_connected'>你沒有鏈接一個設(shè)備</string> <string name='bt_not_enabled_leaving'>藍(lán)牙不可用,離開聊天室</string> <string name='title_connecting'>鏈接中...</string> <string name='title_connected_to'>連接到:</string> <string name='title_not_connected'>無鏈接</string> <string name='scanning'>藍(lán)牙設(shè)備搜索中...</string> <string name='select_device'>選擇一個好友鏈接</string> <string name='none_paired'>沒有配對好友</string> <string name='none_found'>附近沒有發(fā)現(xiàn)好友</string> <string name='title_paired_devices'>已配對好友</string> <string name='title_other_devices'>其它可連接好友</string> <string name='button_scan'>搜索好友</string> <string name='connect'>我的好友</string> <string name='discoverable'>設(shè)置在線</string> <string name='back'>退出</string> <string name='startVideo'>開始聊天</string> <string name='stopVideo'>結(jié)束聊天</string> </resources>

用于藍(lán)牙會話的服務(wù)組件ChatService.java中有三個內(nèi)部類:AcceptThread(接受新連接)、ConnectThread(發(fā)出連接)和ConnectedThread (已連接)。

// 創(chuàng)建監(jiān)聽線程,準(zhǔn)備接受新連接。使用阻塞方式,調(diào)用 BluetoothServerSocket.accept() private class AcceptThread extends Thread { private final BluetoothServerSocket mmServerSocket; public AcceptThread() { BluetoothServerSocket tmp = null; try { //使用射頻端口(RF comm)監(jiān)聽 tmp = mAdapter.listenUsingRfcommWithServiceRecord(NAME, MY_UUID); } catch (IOException e) { } mmServerSocket = tmp; } @Override public void run() { setName('AcceptThread'); BluetoothSocket socket = null; while (mState != STATE_CONNECTED) { try { socket = mmServerSocket.accept(); } catch (IOException e) { break; } if (socket != null) { synchronized (ChatService.this) { switch (mState) { case STATE_LISTEN: case STATE_CONNECTING:connected(socket, socket.getRemoteDevice());break; case STATE_NONE: case STATE_CONNECTED:try { socket.close();} catch (IOException e) { e.printStackTrace();}break; } } } } } public void cancel() { try { mmServerSocket.close(); } catch (IOException e) { e.printStackTrace(); } } } /* 連接線程,專門用來對外發(fā)出連接對方藍(lán)牙的請求和處理流程。 構(gòu)造函數(shù)里通過 BluetoothDevice.createRfcommSocketToServiceRecord() , 從待連接的 device 產(chǎn)生 BluetoothSocket. 然后在 run 方法中 connect , 成功后調(diào)用 BluetoothChatSevice 的 connected() 方法。定義 cancel() 在關(guān)閉線程時能夠關(guān)閉相關(guān)socket 。 */ private class ConnectThread extends Thread { private final BluetoothSocket mmSocket; private final BluetoothDevice mmDevice; public ConnectThread(BluetoothDevice device) { mmDevice = device; BluetoothSocket tmp = null; try { tmp = device.createRfcommSocketToServiceRecord(MY_UUID); } catch (IOException e) { e.printStackTrace(); } mmSocket = tmp; } @Override public void run() { setName('ConnectThread'); mAdapter.cancelDiscovery(); try { mmSocket.connect(); } catch (IOException e) { connectionFailed(); try { mmSocket.close(); } catch (IOException e2) { e.printStackTrace(); } ChatService.this.start(); return; } synchronized (ChatService.this) { mConnectThread = null; } connected(mmSocket, mmDevice); } public void cancel() { try { mmSocket.close(); } catch (IOException e) { e.printStackTrace(); } } } /* 雙方藍(lán)牙連接后一直運(yùn)行的線程;構(gòu)造函數(shù)中設(shè)置輸入輸出流。 run()方法中使用阻塞模式的 InputStream.read()循環(huán)讀取輸入流,然后發(fā)送到 UI 線程中更新聊天消息。 本線程也提供了 write() 將聊天消息寫入輸出流傳輸至對方,傳輸成功后回寫入 UI 線程。最后使用cancel()關(guān)閉連接的 socket */ 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; try { tmpIn = socket.getInputStream(); tmpOut = socket.getOutputStream(); } catch (IOException e) { e.printStackTrace(); } mmInStream = tmpIn; mmOutStream = tmpOut; } @Override public void run() { byte[] buffer = new byte[1024]; int bytes; while (true) { try { bytes = mmInStream.read(buffer); mHandler.obtainMessage(weixinFragment.MESSAGE_READ, bytes, -1, buffer).sendToTarget(); } catch (IOException e) { connectionLost(); break; } } } public void write(byte[] buffer) { try { mmOutStream.write(buffer); mHandler.obtainMessage(weixinFragment.MESSAGE_WRITE, -1, -1, buffer).sendToTarget(); } catch (IOException e) { e.printStackTrace(); } } public void cancel() { try { mmSocket.close(); } catch (IOException e) { e.printStackTrace(); } } }

新建Activity組件DeviceList,實(shí)現(xiàn)拾取與之會話的藍(lán)牙設(shè)備。本程序供菜單項主界面的選項菜單“我的友好”調(diào)用,用于:

(1)顯示已配對的好友列表;(2)搜索可配對的好友進(jìn)行配對(3)新選擇并配對的藍(lán)牙設(shè)備將刷新好友列表

注意:發(fā)現(xiàn)新的藍(lán)牙設(shè)備并請求配對時,需要對應(yīng)接受

關(guān)鍵技術(shù):動態(tài)注冊一個廣播接收者,處理藍(lán)牙設(shè)備掃描的結(jié)果

public class DeviceList extends Activity{ private BluetoothAdapter mBtAdapter; private ArrayAdapter<String> mPairedDevicesArrayAdapter; private ArrayAdapter<String> mNewDevicesArrayAdapter; public static String EXTRA_DEVICE_ADDRESS = 'device_address'; //Mac地址 //定義廣播接收者,用于處理掃描藍(lán)牙設(shè)備后的結(jié)果 private final BroadcastReceiver mReceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { String action = intent.getAction(); if (BluetoothDevice.ACTION_FOUND.equals(action)) { BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE); if (device.getBondState() != BluetoothDevice.BOND_BONDED) { mNewDevicesArrayAdapter.add(device.getName() + 'n' + device.getAddress()); } } else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action)) { if (mNewDevicesArrayAdapter.getCount() == 0) { String noDevices = getResources().getText(R.string.none_found).toString(); mNewDevicesArrayAdapter.add(noDevices); } } } }; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.device_list); //在被調(diào)用活動里,設(shè)置返回結(jié)果碼 setResult(Activity.RESULT_CANCELED); init(); //活動界面 } private void init() { Button scanButton = findViewById(R.id.button_scan); scanButton.setOnClickListener(new OnClickListener() { public void onClick(View v) { Toast.makeText(DeviceList.this, R.string.scanning, Toast.LENGTH_LONG).show(); doDiscovery(); //搜索藍(lán)牙設(shè)備 } }); mPairedDevicesArrayAdapter = new ArrayAdapter<String>(this, R.layout.device_name); mNewDevicesArrayAdapter = new ArrayAdapter<String>(this, R.layout.device_name); //已配對藍(lán)牙設(shè)備列表 ListView pairedListView =findViewById(R.id.paired_devices); pairedListView.setAdapter(mPairedDevicesArrayAdapter); pairedListView.setOnItemClickListener(mPaireDeviceClickListener); //未配對藍(lán)牙設(shè)備列表 ListView newDevicesListView = findViewById(R.id.new_devices); newDevicesListView.setAdapter(mNewDevicesArrayAdapter); newDevicesListView.setOnItemClickListener(mNewDeviceClickListener); //動態(tài)注冊廣播接收者 IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND); registerReceiver(mReceiver, filter); filter = new IntentFilter(BluetoothAdapter.ACTION_DISCOVERY_FINISHED); registerReceiver(mReceiver, filter); mBtAdapter = BluetoothAdapter.getDefaultAdapter(); Set<BluetoothDevice> pairedDevices = mBtAdapter.getBondedDevices(); if (pairedDevices.size() > 0) { findViewById(R.id.title_paired_devices).setVisibility(View.VISIBLE); for (BluetoothDevice device : pairedDevices) { mPairedDevicesArrayAdapter.add(device.getName() + 'n' + device.getAddress()); } } else { String noDevices = getResources().getText(R.string.none_paired).toString(); mPairedDevicesArrayAdapter.add(noDevices); } } @Override protected void onDestroy() { super.onDestroy(); if (mBtAdapter != null) { mBtAdapter.cancelDiscovery(); } this.unregisterReceiver(mReceiver); } private void doDiscovery() { findViewById(R.id.title_new_devices).setVisibility(View.VISIBLE); if (mBtAdapter.isDiscovering()) { mBtAdapter.cancelDiscovery(); } mBtAdapter.startDiscovery(); //開始搜索藍(lán)牙設(shè)備并產(chǎn)生廣播 //startDiscovery是一個異步方法 //找到一個設(shè)備時就發(fā)送一個BluetoothDevice.ACTION_FOUND的廣播 } private OnItemClickListener mPaireDeviceClickListener = new OnItemClickListener() { public void onItemClick(AdapterView<?> av, View v, int arg2, long arg3) { mBtAdapter.cancelDiscovery(); String info = ((TextView) v).getText().toString(); String address = info.substring(info.length() - 17); Intent intent = new Intent(); intent.putExtra(EXTRA_DEVICE_ADDRESS, address); //Mac地址 setResult(Activity.RESULT_OK, intent); finish(); } }; private OnItemClickListener mNewDeviceClickListener = new OnItemClickListener() { public void onItemClick(AdapterView<?> av, View v, int arg2, long arg3) { mBtAdapter.cancelDiscovery(); Toast.makeText(DeviceList.this, '請在藍(lán)牙設(shè)置界面手動連接設(shè)備',Toast.LENGTH_SHORT).show(); Intent intent = new Intent(Settings.ACTION_BLUETOOTH_SETTINGS); startActivityForResult(intent,1); } }; //回調(diào)方法:進(jìn)入藍(lán)牙配對設(shè)置界面返回后執(zhí)行 @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); init(); //刷新好友列表 } }

藍(lán)牙會話的主Activity組件程序fragment.java

public class weixinFrament extends Fragment { public static final int MESSAGE_STATE_CHANGE = 1; public static final int MESSAGE_READ = 2; public static final int MESSAGE_WRITE = 3; public static final int MESSAGE_DEVICE_NAME = 4; public static final int MESSAGE_TOAST = 5; public static final String DEVICE_NAME = 'device_name'; public static final String TOAST = 'toast'; private static final int REQUEST_CONNECT_DEVICE = 1; //請求連接設(shè)備 private static final int REQUEST_ENABLE_BT = 2; private TextView mTitle; private ListView mConversationView; private EditText mOutEditText; private Button mSendButton; private String mConnectedDeviceName = null; private ArrayAdapter<String> mConversationArrayAdapter; private StringBuffer mOutStringBuffer; private BluetoothAdapter mBluetoothAdapter = null; private ChatService mChatService = null; private View view; public weixinFrament() { } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) { view = inflater.inflate(R.layout.tab_01, container, false); Toolbar toolbar = view.findViewById(R.id.toolbar); setHasOptionsMenu(true); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { if (ContextCompat.checkSelfPermission(this.getContext(), Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) { ActivityCompat.requestPermissions(getActivity(), new String[]{Manifest.permission.ACCESS_COARSE_LOCATION}, 1); } } //創(chuàng)建選項菜單 toolbar.inflateMenu(R.menu.option_menu); //選項菜單監(jiān)聽 toolbar.setOnMenuItemClickListener(new MyMenuItemClickListener()); mTitle = view.findViewById(R.id.title_left_text); mTitle.setText(R.string.app_name); mTitle = view.findViewById(R.id.title_right_text); // 得到本地藍(lán)牙適配器 mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter(); if (mBluetoothAdapter == null) { Toast.makeText(view.getContext(), '藍(lán)牙不可用', Toast.LENGTH_LONG).show(); getActivity().finish(); return view; } if (!mBluetoothAdapter.isEnabled()) { //若當(dāng)前設(shè)備藍(lán)牙功能未開啟 Intent enableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE); startActivityForResult(enableIntent, REQUEST_ENABLE_BT); // } else { if (mChatService == null) { setupChat(); //創(chuàng)建會話 } } return view; } @Override public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) { super.onRequestPermissionsResult(requestCode, permissions, grantResults); if (grantResults.length > 0) { if (grantResults[0] != PackageManager.PERMISSION_GRANTED) { Toast.makeText(view.getContext(), '未授權(quán),藍(lán)牙搜索功能將不可用!', Toast.LENGTH_SHORT).show(); } } } @Override public synchronized void onResume() { //synchronized:同步方法實(shí)現(xiàn)排隊調(diào)用 super.onResume(); if (mChatService != null) { if (mChatService.getState() == ChatService.STATE_NONE) { mChatService.start(); } } } private void setupChat() { mConversationArrayAdapter = new ArrayAdapter<String>(view.getContext(), R.layout.message); mConversationView = view.findViewById(R.id.in); mConversationView.setAdapter(mConversationArrayAdapter); mOutEditText = view.findViewById(R.id.edit_text_out); mOutEditText.setOnEditorActionListener(mWriteListener); mSendButton = view.findViewById(R.id.button_send); mSendButton.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { TextView textview = view.findViewById(R.id.edit_text_out); String message = textview.getText().toString(); sendMessage(message); } }); //創(chuàng)建服務(wù)對象 mChatService = new ChatService(view.getContext(), mHandler); mOutStringBuffer = new StringBuffer(''); } @Override public void onDestroy() { super.onDestroy(); if (mChatService != null) mChatService.stop(); } private void ensureDiscoverable() { //修改本機(jī)藍(lán)牙設(shè)備的可見性 //打開手機(jī)藍(lán)牙后,能被其它藍(lán)牙設(shè)備掃描到的時間不是永久的 if (mBluetoothAdapter.getScanMode() != BluetoothAdapter.SCAN_MODE_CONNECTABLE_DISCOVERABLE) { Intent discoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE); //設(shè)置在300秒內(nèi)可見(能被掃描) discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300); startActivity(discoverableIntent); Toast.makeText(view.getContext(), '已經(jīng)設(shè)置本機(jī)藍(lán)牙設(shè)備的可見性,對方可搜索了。', Toast.LENGTH_SHORT).show(); } } private void sendMessage(String message) { if (mChatService.getState() != ChatService.STATE_CONNECTED) { Toast.makeText(view.getContext(), R.string.not_connected, Toast.LENGTH_SHORT).show(); return; } if (message.length() > 0) { byte[] send = message.getBytes(); mChatService.write(send); mOutStringBuffer.setLength(0); mOutEditText.setText(mOutStringBuffer); } } private TextView.OnEditorActionListener mWriteListener = new TextView.OnEditorActionListener() { @Override public boolean onEditorAction(TextView view, int actionId, KeyEvent event) { if (actionId == EditorInfo.IME_NULL && event.getAction() == KeyEvent.ACTION_UP) { //軟鍵盤里的回車也能發(fā)送消息 String message = view.getText().toString(); sendMessage(message); } return true; } }; //使用Handler對象在UI主線程與子線程之間傳遞消息 private final Handler mHandler = new Handler() { //消息處理 @Override public void handleMessage(Message msg) { switch (msg.what) { case MESSAGE_STATE_CHANGE: switch (msg.arg1) { case ChatService.STATE_CONNECTED: mTitle.setText(R.string.title_connected_to); mTitle.append(mConnectedDeviceName); mConversationArrayAdapter.clear(); break; case ChatService.STATE_CONNECTING: mTitle.setText(R.string.title_connecting); break; case ChatService.STATE_LISTEN: case ChatService.STATE_NONE: mTitle.setText(R.string.title_not_connected); break; } break; case MESSAGE_WRITE: byte[] writeBuf = (byte[]) msg.obj; String writeMessage = new String(writeBuf); mConversationArrayAdapter.add('我: ' + writeMessage); break; case MESSAGE_READ: byte[] readBuf = (byte[]) msg.obj; String readMessage = new String(readBuf, 0, msg.arg1); mConversationArrayAdapter.add(mConnectedDeviceName + ': ' + readMessage); break; case MESSAGE_DEVICE_NAME: mConnectedDeviceName = msg.getData().getString(DEVICE_NAME); Toast.makeText(getActivity().getApplicationContext(), '鏈接到 ' + mConnectedDeviceName, Toast.LENGTH_SHORT).show(); break; case MESSAGE_TOAST: Toast.makeText(getActivity().getApplicationContext(), msg.getData().getString(TOAST), Toast.LENGTH_SHORT).show(); break; } } }; //返回進(jìn)入好友列表操作后的數(shù)回調(diào)方法 public void onActivityResult(int requestCode, int resultCode, Intent data) { switch (requestCode) { case REQUEST_CONNECT_DEVICE: if (resultCode == Activity.RESULT_OK) { String address = data.getExtras().getString(DeviceList.EXTRA_DEVICE_ADDRESS); BluetoothDevice device = mBluetoothAdapter.getRemoteDevice(address); mChatService.connect(device); } else if (resultCode == Activity.RESULT_CANCELED) { Toast.makeText(view.getContext(), '未選擇任何好友!', Toast.LENGTH_SHORT).show(); } break; case REQUEST_ENABLE_BT: if (resultCode == Activity.RESULT_OK) { setupChat(); } else { Toast.makeText(view.getContext(), R.string.bt_not_enabled_leaving, Toast.LENGTH_SHORT).show(); getActivity().finish(); } } } //內(nèi)部類,選項菜單的單擊事件處理 private class MyMenuItemClickListener implements Toolbar.OnMenuItemClickListener { @Override public boolean onMenuItemClick(MenuItem item) { switch (item.getItemId()) { case R.id.scan: //啟動DeviceList這個Activity Intent serverIntent = new Intent(weixinFrament.this.getActivity(), DeviceList.class); startActivityForResult(serverIntent, REQUEST_CONNECT_DEVICE); return true; case R.id.discoverable: ensureDiscoverable(); return true; case R.id.back: getActivity().finish(); System.exit(0); return true; } return false; } }}

項目地址

點(diǎn)我進(jìn)入倉庫

總結(jié)

到此這篇關(guān)于Android在類微信程序中實(shí)現(xiàn)藍(lán)牙聊天功能的文章就介紹到這了,更多相關(guān)android 類微信程序藍(lán)牙聊天內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標(biāo)簽: 微信
相關(guān)文章:
主站蜘蛛池模板: 特材真空腔体_哈氏合金/镍基合金/纯镍腔体-无锡国德机械制造有限公司 | 匀胶机旋涂仪-声扫显微镜-工业水浸超声-安赛斯(北京)科技有限公司 | 福州甲醛检测-福建室内空气检测_环境检测_水质检测-福建中凯检测技术有限公司 | 上海小程序开发-小程序制作-上海小程序定制开发公司-微信商城小程序-上海咏熠 | 影像测量仪_三坐标测量机_一键式二次元_全自动影像测量仪-广东妙机精密科技股份有限公司 | 杭州厂房降温,车间降温设备,车间通风降温,厂房降温方案,杭州嘉友实业爽风品牌 | 涂层测厚仪_漆膜仪_光学透过率仪_十大创新厂家-果欧电子科技公司 | 兰州UPS电源,兰州山特UPS-兰州万胜商贸| 液压升降平台_剪叉式液压/导轨式升降机_传菜机定做「宁波日腾升降机厂家」 | 设定时间记录电子秤-自动累计储存电子秤-昆山巨天仪器设备有限公司 | 低气压试验箱_高低温低气压试验箱_低气压实验箱 |林频试验设备品牌 | ph计,实验室ph计,台式ph计,实验室酸度计,台式酸度计 | 衬氟止回阀_衬氟闸阀_衬氟三通球阀_衬四氟阀门_衬氟阀门厂-浙江利尔多阀门有限公司 | 蜂窝块状沸石分子筛-吸附脱硫分子筛-萍乡市捷龙环保科技有限公司 | 517瓜水果特产网|一个专注特产好物的网站| 丙烷/液氧/液氮气化器,丙烷/液氧/液氮汽化器-无锡舍勒能源科技有限公司 | 医用空气消毒机-医用管路消毒机-工作服消毒柜-成都三康王 | 桁架机器人_桁架机械手_上下料机械手_数控车床机械手-苏州清智科技装备制造有限公司 | 微学堂-电动能源汽车评测_电动车性能分享网| 江苏大隆凯科技有限公司 | 仿古瓦,仿古金属瓦,铝瓦,铜瓦,铝合金瓦-西安东申景观艺术工程有限公司 | 示波器高压差分探头-国产电流探头厂家-南京桑润斯电子科技有限公司 | 地埋式垃圾站厂家【佳星环保】小区压缩垃圾中转站转运站 | 电梯乘运质量测试仪_电梯安全评估测试仪-武汉懿之刻 | 翻斗式矿车|固定式矿车|曲轨侧卸式矿车|梭式矿车|矿车配件-山东卓力矿车生产厂家 | RS系列电阻器,RK_RJ启动调整电阻器,RQ_RZ电阻器-上海永上电器有限公司 | 涡轮流量计_LWGY智能气体液体电池供电计量表-金湖凯铭仪表有限公司 | 交流伺服电机|直流伺服|伺服驱动器|伺服电机-深圳市华科星电气有限公司 | Akribis直线电机_直线模组_力矩电机_直线电机平台|雅科贝思Akribis-杭州摩森机电科技有限公司 | 机器视觉检测系统-视觉检测系统-机器视觉系统-ccd检测系统-视觉控制器-视控一体机 -海克易邦 | 精密钢管,冷拔精密无缝钢管,精密钢管厂,精密钢管制造厂家,精密钢管生产厂家,山东精密钢管厂家 | 风电变桨伺服驱动器-风电偏航变桨系统-深圳众城卓越科技有限公司 | 安徽泰科检测科技有限公司【官方网站】 | 扬州汇丰仪表有限公司 | 上海办公室装修公司_办公室设计_直营办公装修-羚志悦装 | 胀套-锁紧盘-风电锁紧盘-蛇形联轴器「厂家」-瑞安市宝德隆机械配件有限公司 | 辐射仪|辐射检测仪|辐射巡测仪|个人剂量报警仪|表面污染检测仪|辐射报警仪|辐射防护网 | 阀门智能定位器_电液动执行器_气动执行机构-赫尔法流体技术(北京)有限公司 | Eiafans.com_环评爱好者 环评网|环评论坛|环评报告公示网|竣工环保验收公示网|环保验收报告公示网|环保自主验收公示|环评公示网|环保公示网|注册环评工程师|环境影响评价|环评师|规划环评|环评报告|环评考试网|环评论坛 - Powered by Discuz! | 聚丙烯酰胺PAM-聚合氯化铝PAC-絮凝剂-河南博旭环保科技有限公司 巨野电机维修-水泵维修-巨野县飞宇机电维修有限公司 | 西点培训学校_法式西点培训班_西点师培训_西点蛋糕培训-广州烘趣西点烘焙培训学院 |