Snippet that gets the wanted length from the total length :
Clip clip = AudioSystem.getClip();
AudioInputStream ais = AudioSystem.getAudioInputStream( new File( "file.wav") );
clip.open( ais );
long currentPos = clip.getMicrosecondPosition(); // get the current position of clip
After these steps, is there a way that i can make up a new audio file, without data conversion (keeping audio data same) but it's length equal to the currentPos ?
i.e cutting up the audio file and reducing it's size to currentPos