I am writing an application which load files using FTP. The code looks like this:
String username = "username";
String password = "password";
But after compiling I can see those in .class files. Compiled code looks like this:
\00username\00password
So the problem is that i can see the password and login in compiled code. I think that is not good. How can I make java compile strings in bytecode too?