Java Generating All Key Value Pairs From List
The Java Keytool is a command line tool which can generate public key / private key pairs and store them in a Java KeyStore. The Keytool executable is distributed with the Java SDK (or JRE), so if you have an SDK installed you will also have the Keytool executable.
I need to implement a structure in Java that is a key-value list (of types Integer-String) and I want to shuffle it. Basically, I would like to do something like that. Public LinkedHashMap<. Oct 26, 2013 HashMap can be used to store key-value pairs. But sometimes you may want to store multiple values for the same key. For example: For Key A, you want to store. Oct 09, 2019 Furthermore, this library can also convert between JSON, XML, HTTP Headers, Cookies, Comma-Delimited List or Text, etc. In this tutorial, we'll have a look at: JSONObject – similar to Java's native Map like object which stores unordered key-value pairs; JSONArray – an ordered sequence of values similar to Java's native Vector implementation. ArrayMap is a generic key-value mapping data structure that is designed to be more memory efficient than a traditional HashMap, this implementation is a version of the platform's android.util.ArrayMap that can be used on older versions of the platform.
The Keytool executable is called keytool
. To execute it, open a command line (cmd, console, shell etc.). and change directory into the bin
directory of your Java SDK installation. Type keytool
followed by pressing the Enter
key. You should see something similar to this:
HashMap in Java with Example. You must need to import java.util.HashMap or its super class in order to use the. It removes all the key and value pairs from the. Getting a key List from Properties: Properties « Collections « Java Tutorial. Method in Properties class combines the keys in the properties list with the keys in the defaults properties list passed into the constructor. Import java.io.FileInputStream. Sorts property list and print out each key=value pair prepended with specific. In this section, you will learn how to get all keys and it's values of the properties files in Java. Java provides the features to collection of all keys and values of the properties file. The properties files that can be used to large collections of information to be inserting in the properties files. Here, you will get the all keys and values.
As you can see, keytool
supports a set of commands to work with keys, certificates and key stores. This Java Keytool tutorial will cover the most commonly used of these commands.
Keytool Scripts
Keytool commands take a lot of arguments which may be hard to remember to set correctly. Therefore it is a good idea to create some Keytool CMD or Shell scripts with the Keytool commands in. The scripts makes it easier to re-execute the keytool commands later on, and makes it possible to go back later and see how a KeyStore was generated.
Generate Key Pair
Generating a public key / private key pair is one of the most common tasks to use the Java Keytool for. The generated key pair is inserted into a Java KeyStore file as a self signed key pair. Here is the general command line format for generating a key pair with the Keytool:
The arguments are explained in the Keytool Arguments section. Not all of these arguments are needed. Many are optional. The Keytool will tell you if you are missing a required argument.
The line breaks should not be included in the final command. The line breaks are only there to make the command format easier to read here.
Here is an example keytool -genkeypair
command. Remember to remove the line breaks before trying it out!
Export Certificate
The Java Keytool can also export certificates stored in a KeyStore. Here is how the Keytool command looks for exporting certificates:

The arguments are explained in the Keytool Arguments section. Not all of these arguments are needed. Many are optional. The Keytool will tell you if you are missing a required argument.
Here is a Keytool command example that exports the certificate for a key pair. Remember to remove the line breaks when entering the command on the command line.
Import Certificate
The Java Keytool can also import certificates into a KeyStore. Here is how the Keytool command looks for importing certificates:
The arguments are explained in the Keytool Arguments section. Not all of these arguments are needed. Many are optional. The Keytool will tell you if you are missing a required argument.
Here is an example Keytool command that imports a certificate into a KeyStore. Remember to remove the line breaks when entering the command on the command line.
List KeyStore Entries
To list the entries in a Java KeyStore you can use the Keytool -list
command. Here is the format for the Keytool -list
command. The line breaks are only here to make the command format easier to read. Remove the line breaks before running the command.
The arguments are explained in the Keytool Arguments section. Not all of these arguments are needed. Many are optional. The Keytool will tell you if you are missing a required argument.
Here is a Keytool -list
command example. Remember to remove the line breaks!
This Keytool -list
command will list all entries in the given KeyStore. The output of running this Keytool -list
command will look similar to this:
If you include an -alias
argument in the Keytool -list
command, then only the entry matching the given alias will get listed. Here is an example Keytool -list
command with an -alias
argument:
The output of running the above Keytool -list
command will look similar to this:
Delete KeyStore Entry
The Keytool has a command that can delete a key entry in a Java KeyStore. The Keytool command for deleting keys is -delete
. Here is the format of the Keytool -delete
command:
The arguments are explained in the Keytool Arguments section. Not all of these arguments are needed. Many are optional. The Keytool will tell you if you are missing a required argument.
Here is a Keytool -delete
command example. Remember to remove the line breaks before running it!
This Keytool -delete
command will remove the KeyStore entry with the alias testkey
from the KeyStore stored in the file keystore.jks
.
Generate a Certificate Request
The Java Keytool can generate a certificate request using the -certreq
command. A certificate request is a request for a certificate authority (CA) to create a public certificate for your organization. Once generated, the certificate request should be sent to the CA you want to create a certificate for you (e.g. Verisign, Thawte, or some other CA).
Java List With Key
Before you can generate a certificate request for a private key, public key pair, you must have generated that private key, public key pair into the Keystore (or imported it). See elsewhere in this Java Keytool tutorial to see how to do that.
Here is the command format for generating a certificate request. Remember to remove all line breaks when trying out this command:
The arguments are explained in the Keytool Arguments section. Not all of these arguments are needed. Many are optional. The Keytool will tell you if you are missing a required argument.
Windows 7 professional 64 bit activation key generator free download. Here is a Java Keytool -certreq
command example:
C# Key Value Pair Example
This command will generate a certificate request for the key stored with alias testkey
in the keystore file keystore.jks
, and write the certificate request into the file named certreq.certreq
.
Remember, the line breaks are only included to make the command easier to read. Omit them when typing in the command on the command line yourself.
Keytool Arguments
Below is a list of the arguments the various Keytool commands take. Please keep in mind that not all commands accept all of these arguments. Look at the concrete command to see what arguments it takes.
Argument | Description |
---|---|
-alias | The name in the Java KeyStore the generated key should be identified by. Remember, an alias can only point to one key. |
-keyalg | The name of the algorithm used to generate the key. A common value is RSA meaning the RSA algorithm should be used to generate the key pair. |
-keysize | The size in bits of the key to generate. Normally key sizes are multiples of 8 which aligns with a number of bytes. Additionally, different algorithms may only support certain preset key sizes. You will need to check what the key size should be for the key you want to generate. |
-sigalg | The signature algorithm used to sign the key pair. |
-dname | The Distinguished Name from the X.500 standard. This name will be associated with the alias for this key pair in the KeyStore. The dname is also used as the 'issuer' and 'subject' fields in the self signed certificate. |
-keypass | The key pair password needed to access this specific key pair within the KeyStore. |
-validity | The number of days the certificate attached to the key pair should be valid. |
-storetype | The file format the KeyStore should be saved in. The default is JKS . Another option is the value PKCS11 which represents the standard PKCS11 format. |
-keystore | The name of the KeyStore file to store the generated key pair in. If the file does not exist, it will be created. |
-file | The name of the file to read from or write to (certificate or certificate request). |
-storepass | The password for the whole KeyStore. Anyone who wants to open this KeyStore later will need this password. The storepass is not the same as the keypass . The keypass password only counts for a single key. You will need both the KeyStore password and the key password to access any given key stored in a KeyStore. |
-rfc | If this flag is included (it has no value following it) then Keytool will use a textual format rather than binary format e.g. for export or import of certificates. The value -rfc refers to the RFC 1421 standard. |
-providerName | The name of the cryptographic API provider you want to use (if any) when generating the key pair. The provider name must be listed in the Java security property files for this to work. |
-providerClass | The name of the root class of the cryptographic API provider you want to use. Use this when the provider name is not listed in the Java security property files. |
-providerArg | Arguments you can pass to your cryptographic provider at initialization (if needed by the provider). |
-v | Short for 'verbose' (?!?), meaning the Keytool will print out a lot of extra information into the command line in a humanly readable format. |
-protected | Specifies whether or not the KeyStore password should be provided by some external mechanism like a pin reader. Valid values are true and false . |
-Jjavaoption | A Java option string (Java VM options) which can be passed to the Java VM that generates the key pair and creates the KeyStore. |