List of utility methods to do Properties Print
void | printProperties(String TAG, Properties props) print Properties @SuppressWarnings("unchecked") Enumeration<String> propNames = (Enumeration<String>) props .propertyNames(); while (propNames.hasMoreElements()) { String propName = propNames.nextElement(); Log.d(TAG, propName + "=" + props.getProperty(propName)); |