当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java KeyStore getDefaultType()用法及代码示例


java.security.KeyStore类的getDefaultType()方法用于提供Keystore类的默认实例。

用法:

public static final String getDefaultType()

参数:此方法不带任何参数。


返回值:此方法返回Keystore类的默认实例。

注意:由于不存在“ privatekey” key 库,因此本文中的所有程序都无法在在线IDE上运行。您可以在系统上的Java编译器上检查此代码。要检查此代码,请在系统上创建 key 库“ privatekey”,并设置自己的 key 库密码以访问该 key 库。

下面是说明getDefaultType()方法的示例:

示例1:

// Java program to demonstrate getDefaultType() 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 intializing 
            // object of InputStream 
            InputStream is 
                = new FileInputStream( 
                    "f:/java/private key.store"); 
  
            // intializing keystore object 
            sr.load(is, pass); 
  
            // getting the type of default keystore 
            // using getDefaultType() method 
            String type 
                = sr.getDefaultType(); 
  
            // display the result 
            System.out.println( 
                "type of default"
                + " keystore entry : "
                + type); 
        } 
  
        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: 没有加载 key 库

// Java program to demonstrate getDefaultType() 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 intializing 
            // object of InputStream 
            InputStream is 
                = new FileInputStream( 
                    "f:/java/private key.store"); 
  
            // intializing keystore object 
            // sr.load(is, pass); 
  
            // getting the type of default keystore 
            // using getDefaultType() method 
            String type 
                = sr.getDefaultType(); 
  
            // display the result 
            System.out.println( 
                "type of default keystore entry : "
                + type); 
        } 
        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); 
        } 
    } 
}
输出:

参考: https://docs.oracle.com/javase/9/docs/api/java/security/KeyStore.html#getDefaultType–



相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 KeyStore getDefaultType() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。