goto syntax in java

I am really a noob in java and a new member of this community. I dont know if this error is common in other program. I made a simple program in java when I try to compile it. It shows some syntax that I really dont know how to fix. Here are the errors.

D:\>javac D:\myPROJECT\comm\PacketExchange.java

D:\myPROJECT\comm\PacketExchange.java:79: illegal start of expression

goto _L2

^

D:\myPROJECT\comm\PacketExchange.java:95: illegal start of expression

goto _L4

^

D:\myPROJECT\comm\PacketExchange.java:100: illegal start of expression

goto _L4

^

D:\myPROJECT\comm\PacketExchange.java:113: illegal start of expression

goto _L6

^

4 errors

Can somebody knows how to fix this?

Thanx in advance to all help

[808 byte] By [foxfirea] at [2007-10-2 11:44:20]
«« TIMERS
»» Wildcards?
# 1
BAHALA KA SA BUHAY MO!
need4helpa at 2007-7-13 5:43:25 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
How do you expect us to help you if you don't post the source code with this syntax?
MartinHilperta at 2007-7-13 5:43:25 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 3

Goto is a reserved word in Java but it is not implemented.

http://java.sun.com/docs/books/jls/second_edition/html/lexical.doc.html#229308

The keywords const and goto are reserved, even though they are not currently used. This may allow a Java compiler to produce better error messages if these C++ keywords incorrectly appear in programs.

BIJ001a at 2007-7-13 5:43:25 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 4
So do I need to reconstruct my codes? So why Java make it still a reserve word if they discourage developers to use it? Thnx for the reply it helps a lot!!!
foxfirea at 2007-7-13 5:43:25 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 5
As stated above, goto is a reserved word in Java. This site offers some recommendations: http://www.oreilly.com/catalog/javanut/excerpt/index.htmlCheck out that link! It may be worth reading. =)
ajuaa at 2007-7-13 5:43:25 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...