简体   繁体   中英

how can i transfer image from PC to Mobile via bluetooth using RFCOMM in java?

I did following coding @ PC side (I tried to sent data in chunks):

try {
    for (int i = 0; i < sdata.length / 2; i++)
    m_Output.write(sdata[i]);
} catch (IOException ex) {
    Logger.getLogger(SPPServer.class.getName()).log(Level.SEVERE, null, ex);
}
int i = sdata.length / 2;
try {
    m_Output.flush();
} catch (IOException ex) {
    Logger.getLogger(SPPServer.class.getName()).log(Level.SEVERE, null, ex);
}
for (int k = i; k < sdata.length; k++) {
    try {
        m_Output.write(sdata[i]);
        m_Output.flush();
        m_Output.close();
    } catch (IOException ex) {
        Logger.getLogger(SPPServer.class.getName()).log(Level.SEVERE, null, ex);
    }
}

While at mobile side I receive it as:

public Image recdata() {

    Image image1 = null;
    int i = 0;
    try {
        // input = StrmConn.openInputStream();
        length = input.read();
        data1 = new byte[length];
        length = 0;
        int ch = 1;

        while (length != data1.length) {
            ch = input.read(data1, length, data1.length - length);

            if (ch == -1) {
                throw new IOException("Can't read data");
            }
            length += ch;
        }
        try {
            //  int len = ch;
            input.wait(2000);

        } catch (InterruptedException ex) {
            ex.printStackTrace();
        }
        length = input.read();
        byte[] data11 = new byte[length];
        try {
            this.wait(1700);
        } catch (InterruptedException ex) {
            ex.printStackTrace();
        }
        while (length != data11.length) {
            ch = input.read(data11, length, data11.length - length);

            if (ch == -1) {
                throw new IOException("Can't read data");
            }
            length += ch;
        }
        length = data1.length + data11.length;
        data12 = new byte[length];
        for (i = 0; i < data1.length; i++) {
            data12[i] = data[i];
        }
        for (int k = i; k < length; k++)
        data12[k] = data[k];
    }
    catch (IOException e) {
        System.err.println("U must correct");
    }

    if (image1 == null) {
        S = "Imagr is null in recive data";
    }
    return image1;
}

The problem might be here on the mobile side

length = input.read();

You are (probably) assigning a byte to an integer, so when you use the value later, you're using the integer representation of the byte and not the integer value. Here is a link with code to let you convert the integer to a byte array, and then back from a byte array to an integer. Java integer to byte array

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM