Che tipo di problemi? Tieni conto che le property sono stringhe... timeout quindi ti verrà restituito come "15*1000".
Comunque, se hai una stringa che rappresenta un numero e vuoi ottenere quel numero puoi usare le classi wrapper Integer, Double ecc...
codice:String s = "123.45"; double d = Double.parseDouble(s); // d vale 123.45 int i = Integer.parseInt("1000"); // i vale 1000

Rispondi quotando
