web-dev-qa-db-ja.com

ブルートゥースプリンターvai Androidアプリにデータを送信する方法は?

ブルートゥース経由でプリンターにデータを送信して印刷するアプリ(レシート用サーマルプリンター)を開発中です。私はこのリンクにあるコードに従いました。

http://pastie.org/6203514 そしてこのリンクも http://pastie.org/6203516

プリンターにデータを送信すると、デバイスとそのMACアドレス、およびその名前を確認できます(プリンターのライトLEDが点滅を停止して標準になります。つまり、プリンターがAndroid電話に接続されます。 )しかし、データを送信すると、印刷されず、エラーも発生しません。私はたくさんグーグルで検索し、たくさんのコードを見つけてすべてのコードセットを試しましたが、印刷できませんでした。

誰かが私をここから助けてくれませんか。 Intentsで簡単に実行できると聞きましたが、Intentsで正確な解決策を得ることができませんでした。

助けていただければ幸いです。

ガネーシャ

14
G K

最後に、私はこの問題を自分で解決しました。問題は、プリンターに送信しているヘッダーバイトが本当の原因であるということです。実際に私は170,1を送信しています(ここで、170はプリンターが受信する必要のある最初のバイトで、2番目のバイトはプリンターIDです。つまり、これら2つの値がプリンター制御カードの設計者によって与えられるcomポートを意味します)。実際には、170,2を送信する必要があります。ここで、2はプリンターIDであり、正しい印刷が行われ、すべてのプリンターについて、コントロールカードに基づいてデータを送信するのが一般的です。

たくさんの友達に感謝します。これが私のコードです。これらのコードをすべてのタイプのプリンターに使用できます(POS-サーマルプリンター用)

public void IntentPrint(String txtvalue)
{
    byte[] buffer = txtvalue.getBytes();
    byte[] PrintHeader = { (byte) 0xAA, 0x55,2,0 };
    PrintHeader[3]=(byte) buffer.length;
    InitPrinter();
    if(PrintHeader.length>128)
    {
        value+="\nValue is more than 128 size\n";
        txtLogin.setText(value);
    }
    else
    {
        try
        {
            for(int i=0;i<=PrintHeader.length-1;i++)
            {
                mmOutputStream.write(PrintHeader[i]);
            }
            for(int i=0;i<=buffer.length-1;i++)
            {
                mmOutputStream.write(buffer[i]);
            }
            mmOutputStream.close();
            mmSocket.close();
        }
        catch(Exception ex)
        {
            value+=ex.toString()+ "\n" +"Excep IntentPrint \n";
            txtLogin.setText(value);
        }
    }
} 

そして残りのためのこのコード:

public void InitPrinter()
{
    try
    {
        if(!bluetoothAdapter.isEnabled())
        {
           Intent enableBluetooth = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
           startActivityForResult(enableBluetooth, 0);
        }

        Set<BluetoothDevice> pairedDevices = bluetoothAdapter.getBondedDevices();

        if(pairedDevices.size() > 0)
        {
            for(BluetoothDevice device : pairedDevices)
            {
                if(device.getName().equals("Your Device Name")) //Note, you will need to change this to match the name of your device
                {
                    mmDevice = device;
                    break;
                }
            }

            UUID uuid = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB"); //Standard SerialPortService ID
            //Method m = mmDevice.getClass().getMethod("createRfcommSocket", new Class[] { int.class });
            //mmSocket = (BluetoothSocket) m.invoke(mmDevice, uuid);
            mmSocket = mmDevice.createRfcommSocketToServiceRecord(uuid);
            bluetoothAdapter.cancelDiscovery();
            if(mmDevice.getBondState()==2)
            {
                mmSocket.connect();
                mmOutputStream = mmSocket.getOutputStream();
            }
            else
            {
                value+="Device not connected";
                txtLogin.setText(value);
            }
        }
        else
        {
            value+="No Devices found";
            txtLogin.setText(value);
            return;
        }
    }
    catch(Exception ex)
    {
        value+=ex.toString()+ "\n" +" InitPrinter \n";
        txtLogin.setText(value);
    }
}
9
G K

印刷の特定のプロトコルを目指していますか? (特定のプリンター用?)

そうでない場合プリンタが接続されていても、一般的な印刷を行うことができます。次のコードスニペットを使用できます。

特定のファイルを印刷したい場所にこれを書いてください:

            Intent intent = Tools.getSendToPrinterIntent(
                    DisplayActivity.this, mPdfAsPictures,
                    mPrintCurrentIndex);

            // notify the activity on return (will need to ask the user for
            // approvel)
            startActivityForResult(intent, ACTIVITY_PRINT);

これはヘルパーメソッドです:

public static Intent getSendToPrinterIntent(Context ctx, String[] fileFullPaths, int indexToPrint){
    Intent sendIntent = new Intent(Intent.ACTION_SEND_MULTIPLE);

    // This type means we can send either JPEG, or PNG
    sendIntent.setType("image/*");

    ArrayList<Uri> uris = new ArrayList<Uri>();

    File fileIn = new File(fileFullPaths[indexToPrint]);
    Uri u = Uri.fromFile(fileIn);
    uris.add(u);

    sendIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);

    return sendIntent;
}

そして最後に、あなたはで答えを受け取るでしょう:

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == ACTIVITY_PRINT) {

        switch (resultCode) {
        case Activity.RESULT_CANCELED:
            Log.d(TAG(), "onActivityResult, resultCode = CANCELED");
            break;
        case Activity.RESULT_FIRST_USER:
            Log.d(TAG(), "onActivityResult, resultCode = FIRST_USER");
            break;
        case Activity.RESULT_OK:
            Log.d(TAG(), "onActivityResult, resultCode = OK");
            break;
        }
    }
};

幸運を!

1
Sean