Converting Strings to int and int to String

//Integer to String
String a = String.valueOf(2);  


//String to integer
int i = Integer.parseInt(a);
n

Comments

Popular posts from this blog

How to create user in oracle