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


Java Provider entrySet()用法及代码示例


java.security.Provider类的entrySet()方法用于返回此Provider中包含的属性条目的不可修改的Set视图。

用法:

public Set<Map.Entry> entrySet()

返回值:此方法返回此映射中包含的映射的设置视图


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

示例1:

// Java program to demonstrate 
// entrySet() method 
  
import java.security.*; 
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) 
    { 
        // Declaring int value i 
        int i = 10; 
  
        try { 
            // creating the object of SecureRandom 
            SecureRandom sr = SecureRandom.getInstance("SHA1PRNG"); 
  
            // getting the Provider of the SecureRandom sr 
            // by using method getProvider() 
            Provider provider = sr.getProvider(); 
  
            // Declaring the variable of set<Map> type 
            Set<Map.Entry<Object, Object> > set; 
  
            // getting unmodifiable Set view of the property entries 
            set = provider.entrySet(); 
  
            // Creating the object of iterator to iterate set 
            Iterator iter = set.iterator(); 
  
            // printing the set elements 
            System.out.println("unmodifiable Set view : \n "); 
            while (i > 0) { 
                System.out.println("Value is : " + iter.next()); 
                i--; 
            } 
        } 
  
        catch (NoSuchAlgorithmException e) { 
  
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
输出:
unmodifiable Set view : 
 
Value is : Alg.Alias.Signature.SHA1/DSA=SHA1withDSA
Value is : Alg.Alias.Signature.1.2.840.10040.4.3=SHA1withDSA
Value is : Alg.Alias.Signature.DSS=SHA1withDSA
Value is : SecureRandom.SHA1PRNG ImplementedIn=Software
Value is : KeyStore.JKS=sun.security.provider.JavaKeyStore$DualFormatJKS
Value is : Alg.Alias.MessageDigest.SHA-1=SHA
Value is : MessageDigest.SHA=sun.security.provider.SHA
Value is : KeyStore.CaseExactJKS=sun.security.provider.JavaKeyStore$CaseExactJKS
Value is : CertStore.com.sun.security.IndexedCollection ImplementedIn=Software
Value is : Signature.SHA256withDSA=sun.security.provider.DSA$SHA256withDSA

示例2:

// Java program to demonstrate 
// entrySet() method 
  
import java.security.*; 
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) throws Exception 
    { 
        // Declaring int value i 
        int i = 10; 
  
        try { 
            // creating the object of  KeyPairGenerator 
            KeyPairGenerator sr = KeyPairGenerator.getInstance("DSA", "SUN"); 
  
            // getting the Provider of the KeyPairGenerator sr 
            // by using method getProvider() 
            Provider provider = sr.getProvider(); 
  
            // Declaring the variable of set<Map> type 
            Set<Map.Entry<Object, Object> > set; 
  
            // getting unmodifiable Set view of the property entries 
            set = provider.entrySet(); 
  
            // Creating the object of iterator to iterate set 
            Iterator iter = set.iterator(); 
  
            // printing the set elements 
            System.out.println("unmodifiable Set view : \n "); 
            while (i > 0) { 
                System.out.println("Value is : " + iter.next()); 
                i--; 
            } 
        } 
  
        catch (NoSuchAlgorithmException e) { 
  
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
输出:
unmodifiable Set view : 
 
Value is : Alg.Alias.Signature.SHA1/DSA=SHA1withDSA
Value is : Alg.Alias.Signature.1.2.840.10040.4.3=SHA1withDSA
Value is : Alg.Alias.Signature.DSS=SHA1withDSA
Value is : SecureRandom.SHA1PRNG ImplementedIn=Software
Value is : KeyStore.JKS=sun.security.provider.JavaKeyStore$DualFormatJKS
Value is : Alg.Alias.MessageDigest.SHA-1=SHA
Value is : MessageDigest.SHA=sun.security.provider.SHA
Value is : KeyStore.CaseExactJKS=sun.security.provider.JavaKeyStore$CaseExactJKS
Value is : CertStore.com.sun.security.IndexedCollection ImplementedIn=Software
Value is : Signature.SHA256withDSA=sun.security.provider.DSA$SHA256withDSA


相关用法


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