Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: LGPL 

import java.util.Properties;

public class Main {
    public static float getFloatProperty(Properties properties, String key, float defaultValue) {
        if (properties != null) {
            String value = properties.getProperty(key, "").trim();

            if (!value.equals("")) {
                try {
                    return Float.parseFloat(value);
                } catch (NumberFormatException var5) {
                    ;
                }
            }
        }

        return defaultValue;
    }
}