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.

declared extension files doesn't show on JFileChooser window... here is my filter class

import java.io.File;

public class AudioFilter extends javax.swing.filechooser.FileFilter{
    public boolean accept(File f){
        if (f.isDirectory()){
            return true;
        }
        String extension = Utils.getExtension(f);
        if (extension != null){
            if (extension.equals(Utils.wav)
            || extension.equals(Utils.aif)
            || extension.equals(Utils.rmf)
            || extension.equals(Utils.au)
            || extension.equals(Utils.mid)){
                return true;
            }else{
                return false;
            }
        }
        return false;
    }

    public String getDescription(){
        return "wav, aif, rmf, au, mid";
    }
}

class Utils{
    public final static String wav = "wav";
    public final static String aif = "aif";
    public final static String rmf = "rmf";
    public final static String au = "au";
    public final static String mid = "mid";
/*
* Get the extension of a file.
*/
    public static String getExtension(File f){
        String ext = null;
        String s = f.getName();
        int i = s.lastIndexOf('.');
        if (i > 0 && i < s.length() - 1){
            ext = s.substring(i+1).toLowerCase();
        }
        return ext;
    }
}

here is my code to call the filter process:

AudioFilter audiofiler = new AudioFilter();
    boolean openFile() throws FileNotFoundException{
            JFileChooser jfc = new JFileChooser();
            jfc.setDialogTitle("Open File");
            jfc.setFileSelectionMode(JFileChooser.FILES_ONLY);
            jfc.setCurrentDirectory(new File ("."));
            jfc.setFileFilter(audiofilter);
            int result = jfc.showOpenDialog(this);
            if(result == JFileChooser.CANCEL_OPTION){
                return true;
            }else if(result == JFileChooser.APPROVE_OPTION){
                fFile = jfc.getSelectedFile();
                String file_string = readFile (fFile);
                if(fFile.isDirectory()){
                    String[] filesInDirectory = fFile.list();
                    for(int i=0;i<filesInDirectory.length;i++){
                        jList1.setModel(list);
                        list.addElement(filesInDirectory[i]);
                    }
                }

                if(file_string != null){
                    fTextArea.setText(file_string);
                }else{
                    return false;
                }
            }
            return true;
        }

thanks guys for any new idea and suggestions... ;)

share|improve this question
Better to use AudioSystem.getAudioFileTypes() to establish which audio types are supported by the current JRE. For example, my JRE (without any further sound types added via SPI) reports it understands WAVE, AU & AIFF. I'm not sure about RMF. WikiPedia claims Java Sound supports it, maybe it is not listed in the sampled sound formats because it can include MIDI data. But in any case, if Java Sound suddenly supports SND or MP3, we'd want to include those in the list. – Andrew Thompson Mar 24 '11 at 6:52

2 Answers

up vote 1 down vote accepted

I tested it too, it works fine. Post your full code, if you are still having problem.

enter image description here

share|improve this answer

I tested your codes and modified a few for a simple test of file filtering (print out the selected file to std out) as follows and it works just fine for the AudioFilter object...

AudioFilter.java:

package file.test;

import java.io.File;

import javax.swing.filechooser.FileFilter;

public class AudioFilter extends FileFilter {

    @Override
    public boolean accept(File f) {
        if (f.isDirectory()){
            return true;
        }
        String extension = Utils.getExtension(f);
        if (extension != null){
            if (
                    (extension.equals(Utils.wav))
                ||  (extension.equals(Utils.aif))
                ||  (extension.equals(Utils.rmf))
                ||  (extension.equals(Utils.au))
                ||  (extension.equals(Utils.mid))
            ) {
                return true;
            }
            else {
                return false;
            }
        }
        return false;
    }

    @Override
    public String getDescription() {
        return "wav, aif, rmf, au, mid";
    }

    static class Utils{
        public final static String wav = "wav";
        public final static String aif = "aif";
        public final static String rmf = "rmf";
        public final static String au  = "au";
        public final static String mid = "mid";

        public static String getExtension(File f){

            String ext = null;
            String s = f.getName();
            int i = s.lastIndexOf('.');
            if (i > 0 && i < s.length() - 1){
                ext = s.substring(i+1).toLowerCase();
            }
            return ext;

        }
    }

}

AudioFilterTest.java:

package file.test;

import java.io.File;
import java.io.FileNotFoundException;

import javax.swing.JFileChooser;

public class AudioFilterTest {

    static AudioFilter audioFilter = new AudioFilter();

    public static boolean openFile() throws FileNotFoundException {
        JFileChooser jfc = new JFileChooser();

        jfc.setDialogTitle("Open File");
        jfc.setFileSelectionMode(JFileChooser.FILES_ONLY);
        jfc.setCurrentDirectory(new File("."));
        jfc.setFileFilter(audioFilter);
        int result = jfc.showOpenDialog(null);

        if (result == JFileChooser.CANCEL_OPTION){
            return true;
        }
        else if (result == JFileChooser.APPROVE_OPTION){
            File fFile = jfc.getSelectedFile();
            String filestr = fFile.getAbsolutePath();

            System.out.println(filestr);
        }

        return false;
    }

    /**
     * @param args
     */
    public static void main(String[] args) {
        try {
            openFile();
        } catch (FileNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

}

I guess you need to check your version of openFile() method...esp. your readFile(File) method

share|improve this answer
wow sir your a genious. this solved my problem: String filestr = fFile.getAbsolutePath(); many many thanks sir... :) :) :) – Kristine Sarah Tan Mar 24 '11 at 6:47

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.