Java tutorial
//package com.java2s; import java.io.File; public class Main { public static boolean isLosslessSupported(File f) { String s = f.toString(); if (s.endsWith(".flac") || s.endsWith(".FLAC")) return true; else if (s.endsWith(".ape") || s.endsWith(".APE")) return true; else if (s.endsWith(".wav") || s.endsWith(".WAV")) return true; else if (s.endsWith(".wv") || s.endsWith(".WV")) return true; else if (s.endsWith(".mpc") || s.endsWith(".MPC")) return true; else if (s.endsWith(".m4a") || s.endsWith(".M4A")) return true; else return false; } public static boolean isLosslessSupported(String s) { // if ((s == null) || (s.length() == 0)) // return false; // if (s.endsWith(".flac") || s.endsWith(".FLAC")) // return true; // else if (s.endsWith(".ape") || s.endsWith(".APE")) // return true; // else if (s.endsWith(".wav") || s.endsWith(".WAV")) // return true; // else if (s.endsWith(".wv") || s.endsWith(".WV")) // return true; // else if (s.endsWith(".mpc") || s.endsWith(".MPC")) // return true; // else if (s.endsWith(".m4a") || s.endsWith(".M4A")) // return true; // else return false; } }