web-dev-qa-db-ja.com

コードでBluetoothを介してAndroidデバイスから他のデバイスにファイルを送信する方法

Bluetoothを使用して、1つのAndroidデバイスから別のAndroidデバイスに画像/ txtまたは任意のファイルを送信するアプリケーションを開発したい。

誰かがそのための助けやソースコードを与えることができますか?

16
Jaydeep Khamar

Androidデバイスから任意のデバイスへのbluetooth経由でファイルを送信できるコードは次のとおりです。

btnOk.setOnClickListener(new OnClickListener()
        {
            @Override
            public void onClick(View v) 
            {
                txtContent = (EditText)findViewById(R.id.txtContent);
                imageView = (ImageView)findViewById(R.id.imageView);
                linearLayout = (LinearLayout)findViewById(R.id.linearLayout);

                viewToBeConverted = (TextView) findViewById(R.id.hello);
                linearLayout.setDrawingCacheEnabled(true);

                //Toast.makeText(MainActivity.this, file.toString(), Toast.LENGTH_LONG).show();
                try
                {
                    if(file.exists())
                    {
                        file.delete();
                    }
                    out = new FileOutputStream(file);
                }
                catch (Exception e) 
                {
                    Toast.makeText(MainActivity.this, e.getMessage(), Toast.LENGTH_LONG).show();
                }


                viewToBeConverted.setText(txtContent.getText().toString());
                viewToBeConverted.setDrawingCacheEnabled(true);

               // Toast.makeText(MainActivity.this, " " + viewToBeConverted.getDrawingCache(), Toast.LENGTH_LONG).show();
                txtContent.setText("");

                Bitmap viewBitmap = linearLayout.getDrawingCache();


                linearLayout.setVisibility(1);
                imageView.setImageBitmap(viewBitmap);

                ByteArrayOutputStream baos = new ByteArrayOutputStream();  
                viewBitmap.compress(Bitmap.CompressFormat.PNG, 100, baos); //bm is the bitmap object

                byte[] b = baos.toByteArray();  

                try 
                {

                    out.write(b);
                    out.flush();
                    out.close();

                    Intent intent = new Intent();  
                    intent.setAction(Intent.ACTION_SEND);  
                    intent.setType("image/png");
                    intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file) );  
                    startActivity(intent);
                }
                catch (Exception e) 
                {
                    Toast.makeText(MainActivity.this, " " + e.getMessage(), Toast.LENGTH_LONG).show();

                }
            }
        });

楽しい。 :)

7
Himanshu Dudhat

このアプリケーションでは、2つのAndroidデバイスがBluetoothを介して双方向のテキストチャットを実行できます。次のような基本的なBluetooth API機能をすべて示します:

  • 他のBluetoothデバイスをスキャンしています
  • ペアリングされたBluetoothデバイスのローカルBluetoothアダプターのクエリ
  • RFCOMMチャネル/ソケットの確立
  • リモートデバイスへの接続
  • Bluetoothを介したデータの転送

http://developer.Android.com/resources/samples/BluetoothChat/index.html

0
Pim Reijersen