I am a Java newbie, so please bear with me and help.
I aim to first play then record sound.
I use netbeans IDE 6.8. Here is the code:
import java
Static means that there is no object (instance of class, like new YourClass()
). If you have a static function, it is supposed to be "standalone", so it cannot use non-static things, because they use stuff in a real object (like member variables etc.)
Any static
function can only call and use other static
functions. So look for the trouble in that environment.