欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP 5, PHP/Java Bridge & Apache on XP PRO + SP2 and

程序员文章站 2022-05-01 20:10:19
...

Example - SalesTax.java, salestax.php, salestax.htm C:\Program Files\Apache Group\Apache2\htdocs\test\SalesTax.java. import java.util.*;import java.text.*;public class SalesTax{ private double tax = 0.0; private double price = 0.0; private

Example - SalesTax.java, salestax.php, salestax.htm

C:\Program Files\Apache Group\Apache2\htdocs\test\SalesTax.java.

import java.util.*;
import java.text.*;

public class SalesTax
{

    private double tax = 0.0;
    private double price = 0.0;
    private double salesTax = 0.0;

    public SalesTax()
    {}

    public String SalesTax(double price, double salesTax)
    {
        tax = price * salesTax;

        NumberFormat nf = null;

        nf = NumberFormat.getCurrencyInstance();

        String priceOut = nf.format(price);
        String taxOut = nf.format(tax);

        nf = NumberFormat.getPercentInstance();
        String salesTaxOut = nf.format(salesTax);

        String str = "Sales Tax of " + salesTaxOut +
            " on " + priceOut + " equals " + taxOut + ".";

        return str;
    }
}

C:\Program Files\Apache Group\Apache2\htdocs\test\salestax.php

SalesTax($price, $tax);
}

?>

C:\Program Files\Apache Group\Apache2\htdocs\test\salestax.htm.

Price: ($)

Tax Rate: (0.1 for 10%)

PHP 5, PHP/Java Bridge & Apache on XP PRO + SP2 and

PHP 5, PHP/Java Bridge & Apache on XP PRO + SP2 and