?? pcclientcomm.java
字號:
package example.simple;
import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Vector;
import javax.bluetooth.BluetoothStateException;
import javax.bluetooth.DeviceClass;
import javax.bluetooth.DiscoveryAgent;
import javax.bluetooth.DiscoveryListener;
import javax.bluetooth.LocalDevice;
import javax.bluetooth.RemoteDevice;
import javax.bluetooth.ServiceRecord;
import javax.bluetooth.UUID;
import javax.microedition.io.Connector;
import javax.microedition.io.StreamConnection;
import javax.swing.BorderFactory;
import javax.swing.DefaultListCellRenderer;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JList;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.SwingUtilities;
/**
* A class that demonstrates Bluetooth communication between client mode PC and
* server mode device through serial port profile. The example uses JSR-82 API.
*
* @see <a href="http://sourceforge.net/projects/bluecove/">BlueCove - a JSR-82
* implementation</a>
*/
public class PCClientCOMM implements DiscoveryListener {
/*-
* ================
* Bluetooth Client
* ================
*
* This example application is a straightforward implementation of
* making a connection throught bluetooth link and using it.
*
*
* Usage
* =====
*
* Once the system is started the information area is filled with logging
* information. Wait until combo box is enabled (if there's any bluetooth
* device around) and select a device from the combo box. A connection
* is constructed to selected device after selection.
*
* After connection is constructed succesfully the application
* operates as an echo client, i.e., everything that is read is written
* back to the server. All information is also written into the information
* area.
*
*
* How it Works
* ============
*
* The example consist of three different operations. Operations need to
* be executed in the dependency order.
*
* 1) *Inquiry method* is used to search all available devices. The combo
* box's data model is filled with found bluetooth devices.
*
* 2) *Service search* is used to search serial port profile service from the
* selected device. The search is started after the user selects the
* device from the combo box.
*
* 3) *Stream handling* communicates with the server through the bluetooth
* link. This example operates in echo loop until stop token is found.
*
*
* Special Debug Mode
* ==================
*
* There's a special debug mode which speeds up development by skipping the
* inquiry method to resolve the remote device. In the debug mode the device's
* bluetooth address is provided by the developer.
*/
/*-
*
* ---- Debug attributes ----
*/
static final boolean DEBUG = false;
static final String DEBUG_address = "0013FDC157C8"; // N6630
/*-
*
* ---- Bluetooth attributes ----
*/
protected UUID uuid = new UUID(0x1101); // serial port profile
protected int inquiryMode = DiscoveryAgent.GIAC;
protected int connectionOptions = ServiceRecord.NOAUTHENTICATE_NOENCRYPT;
/*-
*
* ---- Echo loop attributes ----
*/
protected int stopToken = 255;
/*-
*
* ---- GUI attributes ----
*/
protected JTextArea infoArea = null;
protected Vector deviceList = new Vector();
protected JComboBox combo;
protected ItemListener comboSelectionListener = new ItemListener() {
public void itemStateChanged(ItemEvent e) {
startServiceSearch((RemoteDevice) combo.getSelectedItem());
combo.removeItemListener(this);
combo.setEnabled(false);
}
};
public PCClientCOMM() {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createGUI();
if (DEBUG) // skip inquiry in debug mode
startServiceSearch(new RemoteDevice(DEBUG_address) {
});
else
startDeviceInquiry();
}
});
}
/*-
* ------- Device inquiry section -------
*/
private void startDeviceInquiry() {
try {
deviceList.removeAllElements();
log("Start inquiry method - this will take few seconds...");
getAgent().startInquiry(inquiryMode, this);
} catch (Exception e) {
log(e);
}
}
public void deviceDiscovered(RemoteDevice btDevice, DeviceClass cod) {
log("A device discovered (" + getDeviceStr(btDevice) + ")");
deviceList.addElement(btDevice);
if (!combo.isEnabled()) {
combo.setEnabled(true);
combo.addItemListener(comboSelectionListener);
}
}
public void inquiryCompleted(int discType) {
log("Inquiry compeleted. Please select device from combo box.");
}
/*-
* ------- Service search section -------
*/
private void startServiceSearch(RemoteDevice device) {
try {
log("Start search for Serial Port Profile service from "
+ getDeviceStr(device));
UUID uuids[] = new UUID[] { uuid };
getAgent().searchServices(null, uuids, device, this);
} catch (Exception e) {
log(e);
}
}
/**
* This method is called when a service(s) are discovered.This method starts
* a thread that handles the data exchange with the server.
*/
public void servicesDiscovered(int transId, ServiceRecord[] records) {
log("Service discovered.");
for (int i = 0; i < records.length; i++) {
ServiceRecord rec = records[i];
String url = rec.getConnectionURL(connectionOptions, false);
handleConnection(url);
}
}
public void serviceSearchCompleted(int transID, int respCode) {
String msg = null;
switch (respCode) {
case SERVICE_SEARCH_COMPLETED:
msg = "the service search completed normally";
break;
case SERVICE_SEARCH_TERMINATED:
msg = "the service search request was cancelled by a call to DiscoveryAgent.cancelServiceSearch()";
break;
case SERVICE_SEARCH_ERROR:
msg = "an error occurred while processing the request";
break;
case SERVICE_SEARCH_NO_RECORDS:
msg = "no records were found during the service search";
break;
case SERVICE_SEARCH_DEVICE_NOT_REACHABLE:
msg = "the device specified in the search request could not be reached or the local device could not establish a connection to the remote device";
break;
}
log("Service search completed - " + msg);
if (respCode == SERVICE_SEARCH_ERROR)
startDeviceInquiry();
}
/*-
* ------- The actual connection handling. -------
*/
private void handleConnection(final String url) {
Thread echo = new Thread() {
public void run() {
StreamConnection stream = null;
try {
log("Connecting to server by url: " + url);
stream = (StreamConnection) Connector.open(url);
log("Bluetooth stream open.");
InputStream in = stream.openInputStream();
OutputStream out = stream.openOutputStream();
log("Start echo loop.");
while (true) {
int r = in.read();
log("Read " + r + ", write it back.");
out.write(r);
out.flush();
if (r == stopToken) {
log("Stop echo loop.");
break;
}
}
} catch (IOException e) {
log(e);
} finally {
log("Bluetooth stream closed.");
if (stream != null) {
try {
stream.close();
} catch (IOException e) {
log(e);
}
}
}
}
};
echo.start();
}
/*-
* ------- Graphic User Interface section -------
*/
private void createGUI() {
JFrame.setDefaultLookAndFeelDecorated(true);
JFrame frame = new JFrame("Bluetooth Client");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(new BorderLayout());
frame.setSize(new Dimension(400, 400));
JPanel margin = new JPanel(new BorderLayout());
margin.setBorder(BorderFactory.createEmptyBorder(15, 15, 15, 15));
frame.getContentPane().add(margin);
infoArea = new JTextArea();
infoArea.setLineWrap(true);
JScrollPane pane = new JScrollPane(infoArea,
JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
margin.add(pane);
combo = new JComboBox(this.deviceList);
combo.setEnabled(false);
combo.setEditable(false);
combo.setSelectedItem(null);
combo.setRenderer(new DefaultListCellRenderer() {
public Component getListCellRendererComponent(JList list,
Object value, int index, boolean isSelected,
boolean cellHasFocus) {
RemoteDevice remote = (RemoteDevice) value;
if (remote == null)
setText("No remote devices available.");
else
setText(getDeviceStr(remote));
return this;
}
});
margin.add(combo, BorderLayout.SOUTH);
frame.setVisible(true);
}
private void log(String msg) {
infoArea.insert(msg + "\n", infoArea.getDocument().getLength());
}
private void log(Exception e) {
log(e.getMessage());
e.printStackTrace();
}
/*-
* ------- Utils section - contains utility functions -------
*/
private DiscoveryAgent getAgent() {
try {
return LocalDevice.getLocalDevice().getDiscoveryAgent();
} catch (BluetoothStateException e) {
log(e);
log("ERROR detected and all operations stopped.");
throw new Error("No discovery agent available.");
}
}
private String getDeviceStr(RemoteDevice btDevice) {
return getFriendlyName(btDevice) + " - 0x"
+ btDevice.getBluetoothAddress();
}
private String getFriendlyName(RemoteDevice btDevice) {
try {
return btDevice.getFriendlyName(false);
} catch (IOException e) {
return "no name available";
}
}
/*-
* ------- Bootstrap section, i.e., main method -------
*/
public static void main(String[] args) {
new PCClientCOMM();
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -