open certificate from browser keystore

dear all i my application need to open certificate from windows key store to show the user. i can open certificate in .cer file using .exec("cmd .cer file name"). but i don't know how to open a certificate in keystore(say "Windows-MY").thanks for ur help.
[277 byte] By [learn_ja] at [2007-11-27 8:15:19]
# 1
KeyStore store = KeyStore.getInstance("Windows-MY");store.load(null, null);
wangwja at 2007-7-12 20:00:04 > top of Java-index,Security,Cryptography...
# 2
thanksbut not like that. i wish user can see the certificate as if he/she had double clicked on the certificate file(.cer file). certificate should get displayed on the screen.Message was edited by: learn_j
learn_ja at 2007-7-12 20:00:04 > top of Java-index,Security,Cryptography...
# 3
Sorry I'm not a Windoze user, but maybe you can look at this MS document to see if any of these tools suit your need. http://www.microsoft.com/technet/prodtechnol/windows2000serv/reskit/distrib/dscj_mcs_ooiy.mspx?mfr=true
wangwja at 2007-7-12 20:00:04 > top of Java-index,Security,Cryptography...