Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following method to determine the file size:

    public static long getSize(String path) {

    File file = new File(path);

    if (file.exists()) {
        long size = file.length();

        return size;
    } else {
        Log.e("zero size", "the file size is zero!");
        return 0;

    }

Now I want to show a dialog with the following method (the code IS NOT complete):

 public void gimmeDialog(String path_to_file) {

    final Dialog dialog = new Dialog(this);
    dialog.setContentView(R.layout.dialog);
    dialog.setTitle("Confirm");

    TextView text = (TextView) dialog.findViewById(R.id.txtUploadInfo);

    Button dialogButtonOK = (Button) dialog.findViewById(R.id.btnDialogOK);

    long uploadSize = Send.getSize(path_to_file) / 1024 / 1024;

    text.setText("You are about to upload "
            + Long.toString(uploadSize)
            + " MB. You must accept the terms of service before you can proceed");

    dialogButtonOK.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            dialog.dismiss();
        }
    });

    dialog.show();
}

The problem is that uploadSize is always zero, though the method getSize() returns correct file size when called outside the dialog function. The given string path IS correct. What can be the reason?

P.S. Send is my class name

share|improve this question
is your file bigger then 1 MB? – Praful Bhatnagar Dec 20 '12 at 12:53

2 Answers

up vote 4 down vote accepted

You are making a integer division and if the numenator is less than the numenator the result is 0.

Try with a double division:

double uploadSize = 1.0 * Send.getSize(path_to_file) / 1024 / 1024;
share|improve this answer

Call getSize() and set a variable outside of the dialog function, which is accessible inside the dialog function. Or pass it as a variable to the function.

That doesn't really explain the problem, but it does solve it.

share|improve this answer
Just so you know; ask questions in a comment and keep answer posts for actual answers. They're valid questions, just the wrong form to ask in :) – dutt Dec 20 '12 at 12:36
Ok, thanks for the tip. I thought what I was suggesting here could solve the problem, so I put it in an answer. Maybe I should rephrase? Or just delete and add as a comment? – breadbin Dec 20 '12 at 12:37
WTF I'm stupid. Sure that is the better way to pass the file size to the dialog. It works, thanks. – Maver1ck Dec 20 '12 at 12:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.