Ho una funzione di questo tipo:
public String funzione(HttpServletRequest request, String Parameter){
try {
String strParameter = "";
HttpSession session = request.getSession(false);
if (session == null) {
return "";
}
strParameter = (String) session.getAttribute(Parameter);
if (strParameter != null) {
return strParameter;
}
return "";
}catch (Exception e){
return "";
}
}
che fa esattamente quello che deve fare e che uso in una pagina jsp.
Vorrei però potenziarla per i numeri.
Vorrei che i numeri seguenti:
12.23
3.4556
1.2
fossero scritti con 6 cifre dopo la virgola ovvero in questo modo:
12.230000
3.455600
1.200000
Esiste già qualche funzione di java che potrei usare?
grazie