我需要通过蓝牙传输密文

时间:2014-02-20 18:34:22

标签: android bluetooth text-files encryption

我需要你的帮助!我必须使用蓝牙和我的应用程序在两台设备之间传输加密文本。我的应用程序中有 7种类型的密码!我不知道它看起来真的如何!?我想使用文本文件,但我无法创建它,因为我没有找到信息!我的应用程序是一个演示应用程序,向我们展示了chipres如何工作...... 在第一个设备中,我将制作chiphertext并传输它!第二个设备,我将用于解码它!我没有用这个!请帮我!

 else if(id==R.id.send){
           BluetoothAdapter bluetoothAdapter=BluetoothAdapter.getDefaultAdapter();
           if(bluetoothAdapter == null){
               Toast.makeText(getBaseContext(),"Ваш девайс не поддерживает передачу данных через Bluetooth",Toast.LENGTH_SHORT).show();
           }
           else {
                /*String folderPath=Environment.getExternalStorageState() + "/sdcard/crypto";
                file=new File(folderPath);
                if(!file.exists()){
                    file.mkdir();
                    Toast.makeText(getBaseContext(),"Файл создан",Toast.LENGTH_SHORT).show();
                }*/

               File file = new File("/storage/crypto");
               if(!file.exists())
               {
                   try {
                       if(file.createNewFile());
                   } catch (IOException e) {
                       e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
                   }
                   Log.d("MyTag", "Successfully created folders" + file.getPath().toString());
               }


           }

0 个答案:

没有答案