How to convert String into primitive datatype.

Answers were Sorted based on User's Feedback



How to convert String into primitive datatype...

Answer / vikki

using parseInt() method for example

//String to primitive types
int iVal = Integer.parseInt(str);
long lVal = Long.parseLong(str);
float fVal = Float.parseFloat(str);
double dVal = Double.parseDouble(str);

Is This Answer Correct ?    32 Yes 5 No

How to convert String into primitive datatype...

Answer / akshya kumar

using the wrapper classes, by using the function in
following way:

int i_var = Integer.parseInt(string_var); //and as in
answer #2

Integer, Float, Long are wrapper classes predefined in JAVA
with methods parseInt(), parseFloat etc respectively.

Is This Answer Correct ?    4 Yes 0 No

How to convert String into primitive datatype...

Answer / akshya kumar

we can also use valueOf method of wrapper classes like:

int i_var = Integer.valueOf(string_var);
float f_var = Float.valueOf(string_vatr);

Is This Answer Correct ?    4 Yes 1 No

How to convert String into primitive datatype...

Answer / niranjan sahoo

by using parsing methods of the respective primitive type like if we want to convert into int then use parseint() , if float then use parsefloat()...

Is This Answer Correct ?    3 Yes 3 No

How to convert String into primitive datatype...

Answer / nilesh

by using parseing methode of String class

Is This Answer Correct ?    0 Yes 7 No

How to convert String into primitive datatype...

Answer / srinu

convert int to string

Is This Answer Correct ?    5 Yes 13 No

Post New Answer

More Core Java Interview Questions

What is interface and its use?

8 Answers   HCL,


Difference between an argument and a parameter?

10 Answers   Accounting, HCL, IBM, Quinnox,


What happens if constructor is private?

0 Answers  


abstract class A{ int list []=new int [100]; A(int x,int y){ rondom n=new rondom(); for (int i==;i<100;i++); list [i]=x+r.next int(y-x+1); abstract sort (); abstract binary sarch(int temp); class B extends A{

3 Answers  


program to validate the IP address? Validity range should be 0 to 255

1 Answers   Huawei,






What is assembly language?

0 Answers  


Difference between arraylist and hashset in java?

0 Answers  


What is the difference between method overriding and overloading?

0 Answers  


Can we use catch statement for checked exceptions when there is no chance of raising exception in our code?

0 Answers  


How is string immutable in java?

0 Answers  


what is net based application and its types

1 Answers  


Why local variables are stored in stack?

0 Answers  


Categories