Float f = new Float(10.01); // double в Float
String s1 = Float.toString(0f); // float в String
String s2 = String.valueOf(f); // Float в String
Byte b = Byte.valueOf("120"); // String в Byte
double d = b.doubleValue(); // Byte в double
short s = (short) d; // double в short
Character ch = new Character('3');
int i = Character.digit(ch.charValue(), 10);
System.out.println("s1=" + s1 + ", s2=" + s2);
System.out.println("b=" + b + ", s=" + s + ", d=" + d + ", i=" + i);