228229230231232233234235236237238
Properties info = new Properties(); StringReader stringReader = new StringReader(string); try { info.load(stringReader); } catch (Exception ex) { throw new RedisSystemException("Cannot read Redis info", ex); } finally { stringReader.close(); } return info; }
3536373839404142434445
Properties info = new Properties(); StringReader stringReader = new StringReader(source); try { info.load(stringReader); } catch (Exception ex) { throw new RedisSystemException("Cannot read Redis info", ex); } finally { stringReader.close(); } return info; }