Note that the code you post is not valid Java code.
The bytecode you de-compiled to get this was most likely obfuscated by some obfuscator that also obfuscates String constants (the only obfuscater I use occasionally is ZKM and that does something similar).
Note this code in your sample:
jsr 50;
That's not a valid Java statement and is included by the decompiler to tell you that there was a bytecode instruction that it couldn't de-compile into a valid Java source statement.
jsr
is effectively a gosub
(i.e. it pushes the return address on the stack and invokes the bytecode at the specified offset, it's usually used to implement finally
-blocks), so this code is probably used to jump to some String "decryption" subroutine (I put decryption in quotes because it most likely isn't a strongly typographic decryption at work here).