Appscan is reporting the problem that your credentials are in plain text.
You should hide the credentials. One way is to read the credentials from a property file like this:
Properties props = new Properties();
props.load(new FileInputStream("credentials.txt"));
con = DriverManager.getConnection(props.getProperty("connectionUrl"),
props.getProperty("user"),
props.getProperty("password"));
The credentials.txt looks like that:
connectionUrl=jdbc:oracle:thin:@localhost:1521:xe
user=system
password=oracle
If that are your real credentials, then you should change them now.
If you want to be more secure, then you should also encrypt the credentials in the file and decrypt them before accessing the database.
I hope it helps. Have a nice day.