We are getting properties (that we can not influence) out of a database and want to access them by a key/value mapping. We are facing the problem that one of the property ke
As it seems the delimiter should be =, not space.
Hence - keyValuePair.split("=") should do.
If you are loading this from a java .properties file, then you can extend java.util.Properties and override this method
public synchronized void load(InputStream inStream) throws IOException
so that it parses the properties correctly.