Android Properties Read propertiesToString(Properties p)

Here you can find the source of propertiesToString(Properties p)

Description

properties To String

License

Apache License

Declaration

public static String propertiesToString(Properties p) 

Method Source Code

//package com.java2s;
/*// www.j av a  2 s. c o m
 * Copyright 2004-2005 Germinus XXI, Liferay LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License")
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
 * This is a derived work from source code taken from Liferay.
 */

import java.util.Enumeration;

import java.util.Properties;

public class Main {
    public static String propertiesToString(Properties p) {
        StringBuffer sb = new StringBuffer();

        Enumeration enu = p.propertyNames();

        while (enu.hasMoreElements()) {
            String key = (String) enu.nextElement();

            sb.append(key);
            sb.append("=");
            sb.append(p.getProperty(key));
            sb.append("\n");
        }

        return sb.toString();
    }
}

Related

  1. getProperties(String propsFile)
  2. getProperties(String propsFile)
  3. getProperties(String propsFile, boolean addToSystemProps)
  4. getProperties(String propsFile, boolean addToSystemProps)
  5. loadPropertiyFile(String file)
  6. readPropertyFile(String filePath)
  7. toProperties(String fileName)
  8. findBuildPropValueOf(String prop)
  9. findBuildPropValueOf(String prop)