FindMysqlPassword.java 263 Bytes
Newer Older
Rensq's avatar
Rensq committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15

import com.testor.biz.sys.user.UserHelper;

public class FindMysqlPassword {

    public static void main(String[] args) throws Exception {

        String password = UserHelper.userPassword("ZLmy1110!@#$%^&*");



        System.out.println(password);

    }
}