java.security.KeyStore類的getCertificateAlias()方法用於獲取具有指定證書的第一個KeyStore條目的名稱。
用法:
public final String getCertificateAlias(Certificate cert) throws KeyStoreException
參數:此方法接受證書名稱作為與 key 庫條目匹配的參數。
返回值:此方法返回具有指定證書的第一個KeyStore條目的名稱。
異常:如果您不初始化此 key 庫,則此方法將引發KeyStoreException。
注意:由於不存在“ privatekey” key 庫,因此本文中的所有程序都無法在在線IDE上運行。您可以在係統上的Java編譯器上檢查此代碼。要檢查此代碼,請在係統上創建 key 庫“ privatekey”,並設置自己的 key 庫密碼以訪問該 key 庫。
下麵是說明getCertificate()方法的示例:
示例1:
// Java program to demonstrate getCertificate() method
import java.security.*;
import java.security.cert.*;
import java.util.*;
import java.io.*;
public class GFG {
public static void main(String[] argv)
{
try {
// creating the object of KeyStore
// and getting instance
// By usng getInstance() method
KeyStore sr = KeyStore.getInstance("JKS");
// keystore password is required to access keystore
char[] pass = ("123456").toCharArray();
// creating and initializing object of InputStream
InputStream is
= new FileInputStream(
"f:/java/private Key.store");
// initializing keystore object
sr.load(is, pass);
// getting the certificate
X509Certificate cert
= (X509Certificate)sr
.getCertificate("ftpkey");
// getting alias name for the keyentry
// using getCertificateAlias() mehtod
String alias = sr.getCertificateAlias(cert);
// display the result
System.out.println("alias name for the particular entry : "
+ alias);
}
catch (NoSuchAlgorithmException e) {
System.out.println("Exception thrown : " + e);
}
catch (NullPointerException e) {
System.out.println("Exception thrown : " + e);
}
catch (KeyStoreException e) {
System.out.println("Exception thrown : " + e);
}
catch (FileNotFoundException e) {
System.out.println("Exception thrown : " + e);
}
catch (IOException e) {
System.out.println("Exception thrown : " + e);
}
catch (CertificateException e) {
System.out.println("Exception thrown : " + e);
}
}
}
示例2:對於KeyStoreException
// Java program to demonstrate getCertificateAlias() method
import java.security.*;
import java.security.cert.*;
import java.util.*;
import java.io.*;
public class GFG {
public static void main(String[] argv)
{
try {
// creating the object of KeyStore
// and getting instance
// By usng getInstance() method
KeyStore sr = KeyStore.getInstance("JKS");
// keystore password is required to access keystore
char[] pass = ("123456").toCharArray();
// creating and initializing object of InputStream
InputStream is
= new FileInputStream(
"f:/java/private Key.store");
// initializing keystore object
// sr.load(is, pass);
// getting the certificate
X509Certificate cert
= (X509Certificate)sr
.getCertificate("ftpkey");
// getting alias name for the keyentry
// using getCertificateAlias() mehtod
String alias = sr.getCertificateAlias(cert);
// display the result
System.out.println("alias name for the particular entry : "
+ alias);
}
catch (FileNotFoundException e) {
System.out.println("Exception thrown : " + e);
}
catch (NullPointerException e) {
System.out.println("Exception thrown : " + e);
}
catch (KeyStoreException e) {
System.out.println("Exception thrown : " + e);
}
}
}
相關用法
- Java KeyStore containsAlias()用法及代碼示例
- Java KeyStore getCertificate()用法及代碼示例
- Java KeyStore getEntry()用法及代碼示例
- Java KeyStore deleteEntry()用法及代碼示例
- Java KeyStore getCreationDate()用法及代碼示例
- Java KeyStore getType()用法及代碼示例
- Java KeyStore getDefaultType()用法及代碼示例
- Java KeyStore getProvider()用法及代碼示例
- Java KeyStore isKeyEntry()用法及代碼示例
- Java KeyStore aliases()用法及代碼示例
- Java KeyStore getCertificateChain()用法及代碼示例
- Java KeyStore getKey()用法及代碼示例
- Java KeyStore isCertificateEntry()用法及代碼示例
- Java Java lang.Long.builtcount()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 KeyStore getCertificateAlias() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。