簡體   English   中英

通過藍牙將字符串從android設備發送到筆記本電腦

[英]Sending string from android device to laptop via bluetooth

我正在處理一個項目,該項目涉及從Android手機向運行32位Windows VM(VMWare Fusion)的筆記本電腦發送字符串。 在進行了某種操作的搜索之后,我讓客戶端(電話)工作了,但是對於服務器(筆記本電腦)端,它似乎從未收到任何東西。

我與VM共享藍牙,並且設備已與主機配對,但是當我發送數據時,它已連接到主機,但是運行“服務器”的VM似乎從未收到它。

我從這里獲得了接收器的代碼,但是為了澄清起見,以下是用於接收器/服務器/ VM的代碼:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;

import javax.bluetooth.RemoteDevice;
import javax.bluetooth.UUID;
import javax.microedition.io.Connector;
import javax.microedition.io.StreamConnection;
import javax.microedition.io.StreamConnectionNotifier;

public class server {
    // TODO: Update this to use the window, instead of the console
    public void startServer() throws IOException {

        // Create a UUID for SPP
        UUID uuid = new UUID("1101", true);
        //UUID uuid = new UUID("00001101-0000-1000-8000-00805F9B34FB", false);
        // Create the servicve url
        String connectionString = "btspp://localhost:" + uuid + ";name=SpudSPPServer";

        // open server url
        StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString);

        // Wait for client connection
        System.out.println("\nServer Started. Waiting for clients to connect…");
        StreamConnection connection = streamConnNotifier.acceptAndOpen();

        RemoteDevice dev = RemoteDevice.getRemoteDevice(connection);
        System.out.println("Remote device address: " + dev.getBluetoothAddress());
        System.out.println("Remote device name: " + dev.getFriendlyName(true));

        // read string from spp client
        InputStream inStream = connection.openInputStream();
        BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream));
        String lineRead = bReader.readLine();
        System.out.println(lineRead);

        // send response to spp client
        OutputStream outStream = connection.openOutputStream();
        PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream));
        pWriter.write("Response String from SPP Server\r\n");
        pWriter.flush();
        pWriter.close();

        streamConnNotifier.close();

    }
}

&在主文件中:

public static void main(String args[]) throws IOException {

    display d  = new display();
    server blueToothServer = new server();
    d.makePanel();
    if (selectFile.fileMissing()) {
        d.feed.setText("File missing, creating new file");
        selectFile.makeFile();
        d.feed.setText("File created! Awaiting data...");
    } else {
        d.feed.setText("File found! Awaiting data...");
        d.MACAddress.setText("MAC Address: " + LocalDevice.getLocalDevice().getBluetoothAddress().replace("-", ":").toUpperCase());
    }

    blueToothServer.startServer();

}

如果您需要客戶端(電話)的代碼,可以在詢問時將其發布

弄清楚了,原來是在VM端,所以我通常只是安裝Windows而不是VM,並修復了它

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM