我怎么能在JRuby中表达这个java代码:
// Convert the store to a certificate chain
CertStore store = response.getCertStore();
Collection<? extends Certificate> certs = store
.getCertificates(null);
Certificate[] chain = new Certificate[certs.size()];
int i = 0;
for (Certificate certificate : certs) {
chain[i++] = certificate;
}
我在JRuby中有“商店”,并且它被认为是一个集合。
e.g。
puts store.type
#Collection
答案 0 :(得分:0)
好的,这里的问题是我传入的是正则表达式而不是CertSelector对象。
此代码现在可以正常运行。
store.get_certificates(nil)