Bluetooth in j2me
15.07.2014/12:48
javatipsimport javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import javax.bluetooth.*;
publicclassBluetoothMidletextendsMIDletimplementsCommandListener {private Display display;
private Command exit;
LocalDevice local;
Alert a;
public BluetoothMidlet () {
display = Display.getDisplay ( this ) ;
exit = new Command ( "Exit" ,Command.EXIT, 0 ) ;
a = new Alert ( "Local Device" ) ;
a.addCommand ( exit ) ;
a.setCommandListener ( this ) ;
}
publicvoid startApp () {
try {
// Retrieve the local Bluetooth device objectlocal = LocalDevice.getLocalDevice () ;
// Retrieve the Bluetooth addressof the local deviceString address = local.getBluetoothAddress () ;
// Retrieve the name of the local Bluetooth deviceString name = local.getFriendlyName () ;
System.out.println ( address + name ) ;
a.setString ( "Address is" +address+ " Name is " +name ) ;
display.setCurrent ( a ) ;
} catch ( Exception e ) {
e.printStackTrace () ;
}
}
publicvoid pauseApp () {}
publicvoid destroyApp ( boolean unconditional ) {}
publicvoid commandAction ( Command c,Displayable d ) {
if ( c == exit ) {
notifyDestroyed () ;
destroyApp ( true ) ;
}
}
}
Mã này để dò thiết bị Bluetooth và hiển thị ra tên thiết bị Bluetooth Hay còn để hiển thị địa chỉ bluetút thiết bị đang dùng. Chúc các bạn lập trình j2me thành công
Tag:
Bạn đến từ:
Tool tiện ích admin,KhoGame360,Blog thủ thuật,kenh380
,truyen23h
,tai hinh nen naruto,kenhpro - wap hay,vmt - wap hay, Trần Phú Hiền Blog
,truyen23h
,tai hinh nen naruto,kenhpro - wap hay,vmt - wap hay, Trần Phú Hiền Blog