Sending HTTP post request
In case of sending HTTP post request to a URL
with parameters such as submitting a HTML form and expecting to receive some response.
More details: Apache HTTP Client
import org.apache.http.client.*; |
Another method or an old way …
import java.net.*; |
Scaling BigDecimal
Some methods for scaling a BigDecimal number.
import java.math.* |