Install JSDK problems?
I just downloaded the jsdk1.4 for win. When compiling any file with the import javax line on it i get the following error:
hola.java:1: packag
import javax.*;
^
1 error
I already have added the jdk1.4\bin path and still doesnt work
Can any body help me?
[310 byte] By [
iazurita] at [2007-9-26 2:48:10]

Sorry just seen what the problem is, you are trying to import a set of packages, which I dont think you can do.
i.e.
import javax.*would try to import javax.swing.*, javax.<anyother>.* etc.
you will need to specify them on spereate lines.
import javax.swing.*
import javax.swing.border.*
import javax.swing.event.*
and so on.. including all the packages you require.
Hope this solves the problem?
you will need to ensure that the standard JDK jar and the Servlet Jar are both in the classpath. try that.. if not, post your environment vars, PATH CLASSPATH, and copy and paste how you run the Java App. This might give us some more clues.G