0

我有这个方法

public String getCredentials(String entry) throws IOException {
    KeePassFile database = KeePassDatabase
            .getInstance(config.getProperty("keyPassDataBasePath"))
            .openDatabase(new File(config.getProperty("keyPassKeyPath")));
    Entry sampleEntry = database.getEntryByTitle(entry);
    return sampleEntry.getPassword();
}

这基本上是一个 KeePass DB,根据其所属帐户的标题检索密码。

有很多方法需要 2 个密码,因此使用了 2 个条目。我不想每次都调用该方法,因为我认为这是一种资源浪费。如何保存返回值,并在方法需要这些值的其他类中使用它?

这行得通吗?我觉得无论如何都会多次调用该方法

    private static String pwd1;
    private static String pwd2;

    public void setValues() throws IOException {
        pwd1 = getCredentials("accountName1");
        pwd2 = getCredentials("accountName2");
    }

    public String getPwd1(){
        return pwd1;
    }

    public String getPwd2(){
        return pwd2;
    }
4

1 回答 1

1

将它们存储在 HasMap 中,键为条目,密码为值:

class CachedCredentials {
  private Map<String, String> storedPasswords = new HashMap<>();

  private Properties config;
  
  public CachedCredentials(Properties config) {
     this.config = config;
  }
  
  public String getCredentials(String entry) {
    if (!storedPasswords.containsKey(entry)) {
      KeePassFile database = KeePassDatabase
        .getInstance(config.getProperty("keyPassDataBasePath"))
        .openDatabase(new File(config.getProperty("keyPassKeyPath")));
  
      Entry sampleEntry = database.getEntryByTitle(entry);   
      storedPasswords.put(entry, sampleEntry.getPassword());
    }

    return storedPasswords.get(entry);
  }

然后在您的 setValues 方法中,您可以执行以下操作:

private cachedCreds; //initialize this in your constructor

public void setValues() throws IOException {
    pwd1 = cachedCreds.getCredentials("accountName1");
    pwd2 = cachedCreds.getCredentials("accountName2");
}

如果有人在程序运行时进行内存侦听,则此解决方案可能不安全。可能想想办法通过base64编码或实际加密来混淆缓存的密码,但这超出了所要求的范围。

于 2020-08-12T17:02:24.840 回答