I have compiler error when i run the ant script

Hi

Iam a beginner working with ant...When I run the script I get the following error...let me know if you have any suggestions....

build:

[javac] Compiling 28 source files to C:\finaltrial\classes

[javac] Note: Some input files use unchecked or unsafe operations.

[javac] Note: Recompile with -Xlint:unchecked for details.

[javac] Compiling 186 source files to C:\finaltrial\classes

[javac] error: error reading C:\finaltrial\classes\trial\impl\ru

ntime\AbstractUnmarshallingEventHandlerImpl.class; error in opening zip file

[javac] Note: Some input files use unchecked or unsafe operations.

[javac] Note: Recompile with -Xlint:unchecked for details.

[javac] 1 error

Thanks in advance..

[766 byte] By [sragkotaa] at [2007-11-26 19:22:23]
# 1
that's not an error, it's a warning.See the documentation on what causes that warning, it'll be an eye opener about the new language features introduced something like 2 years ago.
jwentinga at 2007-7-9 21:42:52 > top of Java-index,Developer Tools,Java Compiler...
# 2
There's an error in AbstractUnmarshallingEventHandlerImpl. Put a try catch statement around where you are opening a zip file. (maybe it doesn't exists, access permissions etc.)
hartrafta at 2007-7-9 21:42:52 > top of Java-index,Developer Tools,Java Compiler...