⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 volumeunit.java

📁 Ftp服务1.0
💻 JAVA
字号:
package ranab.unit;

/**
 * Volume unit converter class.
 *
 * @author <a href="mailto:rana_b@yahoo.com">Rana Bhattacharyya</a>
 */
public 
class VolumeUnit extends BaseUnit {
    
    private final static String[] UNITS = {
        "cu meters", 
        "liters", 
        "cu centimeters", 
        "cu yards",
        "cu feet",
        "cu inches",
        "barrels (Brit)",
        "barrels (US oil)",
        "bushels (Brit)",
        "bushels (US)",
        "gallons (Brit)",
        "gallons (US, dry)",
        "gallons (US, liq)",
        "ounces (Brit, flu)",
        "ounces (US, flu)",
        "pints (Brit)",
        "pints (US, dry)",
        "pints (US, liq)",
        "quarts (Brit)",
        "quarts (US, dry)",
        "quarts (US, liq)",
        "cups",
        "tablespoons",
        "teaspoons"    
    }; 
    
    // base volume unit is liters
    private final static double[] LITER_TABLE = {
       0.001,
       1.0,
       1000.0,
       0.0013079506193212351,
       0.03531466672148859,
       61.02374409473229,
       0.006110266429645065,
       0.006289810770352982,
       0.027496198932814762,
       0.028377857186588352,
       0.21996959146614708,
       0.22702285749528378,
       0.2641720523581484,
       35.195134634273856,
       33.814022701271305,
       1.7597567317136928,
       1.8161828599622702,
       2.113376418865187,
       0.8798783658258791,
       0.9080914299811351,
       1.0566882094325935,
       4.226752837730374,
       67.62804540482938,
       202.88413620899988    
    };
    
    /**
     * Get all the possible units.
     */
    public String[] getAllUnits() {
        return UNITS;
    }
    
    /**
     * Convert one unit from another
     */
    public String convertUnit(String value, int from, int to) throws UnitException {
        double inVal = getDoubleValue(value);
        double outVal = inVal*LITER_TABLE[to]/LITER_TABLE[from];
        return String.valueOf(outVal);
    }
    
    /**
     * Return unit type.
     */
    public String toString() {
        return "Volume";
    }
    
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -