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 am trying to get the size of a file from JFileChooser so that I can print it in table, how do I do that?

JFileChooser fileChooser = new JFileChooser();
fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);

String[] fileNames = fileChooser.getSelectedFile().list();
int fileSize;

for (int i = 0; i < files.length; i++) {

    int fileSize = fileNames[i] //How do I get the size of the file here?
    model.addRow(new Object[]{fileNames[i], fileSize});

}
share|improve this question

2 Answers

up vote 2 down vote accepted

You can use

File[] files = fileChooser.getSelectedFile().listFiles();

and then use the for loop with the method length() from the File class to get the file size, i.e.,

int fileSize = files[i].length();
share|improve this answer
Thank you so much. This fixed my problem. – jadrijan Nov 28 '11 at 19:35

Get a list of files (instead of file names) and then just call "length()" on them:

File[] files = fileChooser.getSelectedFile().listFiles();
for (int i = 0; i < files.length; i++) {

    int fileSize = files[i].length();
    model.addRow(new Object[]{fileNames[i], fileSize});

}
share|improve this answer

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.