Problem in programming often encounters data type conversion, now the conversion that is often used is summarized as follows:
INT -> Integer Integer.toString (int Arg); new integer (int Arg);
INT / BOOLEAN / CHAR / Long / Object -> String String.Valueof (int / boolean / char / long / Object arg);
String -> int integer.parseint (string arg);