0

シンプルな写真共有クライアントを実装しています。

UI には 2 つのボタンがあります。1 つは画像を閲覧するため、もう 1 つは画像を送信するためです。

問題は、送信ボタンを押したときに画像を参照して選択した後、アプリが突然クラッシュすることです。

コードは次のとおりです。

public class FileTransfer extends Activity {
    /** Called when the activity is first created. */

    private static final int SELECT_PICTURE = 1;

    private String selectedImagePath;
    private ImageView img;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_fs);
        img = (ImageView) findViewById(R.id.ivPic);
        Button Browse = (Button) findViewById(R.id.bBrowse);
        Button send = (Button) findViewById(R.id.bSend);
        final TextView status = (TextView) findViewById(R.id.tvStatus);

        Browse.setOnClickListener(new OnClickListener() {
                    public void onClick(View arg0) {
                        Intent intent = new Intent();
                        intent.setType("image/*");
                        intent.setAction(Intent.ACTION_GET_CONTENT);
                        startActivityForResult(Intent.createChooser(intent, "Select Picture"), SELECT_PICTURE);

                    }
                });
        send.setOnClickListener(new OnClickListener() {
            public void onClick(View arg0) {
                Socket sock;
                try {
                    sock = new Socket("MY_PCs_IP", 1149); 
                    File myFile = new File (selectedImagePath); 
                    byte [] mybytearray  = new byte [(int)myFile.length()];
                    FileInputStream fis = new FileInputStream(myFile);
                    BufferedInputStream bis = new BufferedInputStream(fis);


  bis.read(mybytearray,0,mybytearray.length);
                OutputStream os = sock.getOutputStream();
                System.out.println("Sending...");
                os.write(mybytearray,0,mybytearray.length);
                os.flush();
                sock.close();
            } catch (UnknownHostException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    });
}
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (resultCode == RESULT_OK) {
        if (requestCode == SELECT_PICTURE) {
            Uri selectedImageUri = data.getData();
            selectedImagePath = getPath(selectedImageUri);
            TextView path = (TextView) findViewById(R.id.tvPath);
            path.setText("Image Path : " + selectedImagePath);
            img.setImageURI(selectedImageUri);
        }
    }
}

public String getPath(Uri uri) {
    String[] projection = { MediaStore.Images.Media.DATA };
    Cursor cursor = managedQuery(uri, projection, null, null, null);
    int column_index = cursor
            .getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
    cursor.moveToFirst();
    return cursor.getString(column_index);
}
}
4

1 に答える 1

0

UI(メイン)スレッドで長時間実行されるタスクを実行しています。AsyncTask を使用して送信アクションを実行することを検討してください。

于 2015-01-12T14:15:46.023 に答える