0

我想实现这一点:

private static InputStream getTokenCfg() {
    String cfg = MessageFormat.format(
            "name = {0} /n library = {1} /n  slotListIndex = 0",
            config.getPkcs11().getKey(),
            config.getPkcs11().getValue());

    return new ByteArrayInputStream(cfg.getBytes());
}

然后将其与new SunPKCS11(getTokenCfg());

4

1 回答 1

-1

奇怪的是,我只是弄错了字符串...
rsss ....
下面的"name = {0} \r\nlibrary = {1} \r\nslotListIndex = 0",就像一个魅力.. 愚蠢的我,我弄错了换行符并忘记了回车符...

于 2012-04-05T13:20:05.333 回答