Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Untitled
SUBMITTED BY:
Guest
DATE:
Dec. 10, 2013, 12:49 a.m.
FORMAT:
Text only
SIZE:
343 Bytes
Raw
Download
Tweet
HITS:
838
Go to comments
Report
private double getDouble(String str)
{
try
{
double d = Double.parseDouble(str);
if(d <= 0 || d > 100) return 0;
else return d;
}
catch(Exception e)
{
//silently catch it
}
return 0.0;
}
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus