converter string para flutuar java

String yourString = "23.7";
float yourFloat = Float.parseFloat(yourString);
Lazy Lemur