Possible Duplicate:
Recompile decompiled Java (JD / JAD) source that contains goto instructions
what's the meaning of goto _L1 when i decompile class java
Possible Duplicate:
Recompile decompiled Java (JD / JAD) source that contains goto instructions
what's the meaning of goto _L1 when i decompile class java
The decompiler was not wise enough to handle some statements, most likely compiled try-catch-statements. So he resigns, and does something syntactically correct, but unlikely to be like this is the original source.
goto _L1
is just a Java statement meaning go to the instruction AFTER the block of code following the goto statement (This is mad, I know, but that is how Java implemented it).
goto
isn't a Java keyword. What you're seeing is a remnant of improper decompilation.
http://download.oracle.com/javase/tutorial/java/nutsandbolts/_keywords.html