javac doesn't see classes from standart packages

Hi,

I've installed jdk1.6.0 on my computer, but when I'm trying to compile the following errors appear:

cannot find simbol

class io

package java

import java.io

JDK installed at directory: C:\Archivos de programa\Java\jdk1.6.0\

I've set next nvironmental vars:

JAVA_HOME = C:\Archivos de programa\Java\jdk1.6.0\;

Path = %JAVA_HOME%\bin;

but it still doesn't work.

can enybody help me please?

[467 byte] By [Dunsta] at [2007-11-26 22:10:03]
# 1
The import statement appears to be incorrect. It should either import the package,import java.io.*;or specific classes, likeimport java.io.file;
ChuckBinga at 2007-7-10 10:57:19 > top of Java-index,Desktop,Deploying...
# 2
Thanks, I've really missed this :)
Dunsta at 2007-7-10 10:57:19 > top of Java-index,Desktop,Deploying...