I am having a problem with this code:
import javax.sound.*;
public class Sound {
public static void main(String[] args) {
//Code Body
}
}
The problem has nothing to do with code itself; the compiler returns this message when i try to compile:
Sound.java:1: package javax.sound does not exist
import javax.sound.*;
^
I am guessing that the Sound package didn't get installed somehow but that seems to simple (ha ha). Thanks for the help.