vote up 3 vote down star
1

There are many ways of converting a String to an Integer object. Which is the most efficient among the below:

Integer.valueOf()
Integer.parseInt()
org.apache.commons.beanutils.converters.IntegerConverter

My usecase needs to create wrapper Integer objects...meaning no primitive int...and the converted data is used for read-only.

flag

0% accept rate
I did some small test and surprised to see that Integer.valueOf is taking lot of time...any thoughts... [code] for (int i = 1; i <= Integer.MAX_VALUE / 100; i++) conversion [code] valueOf=0:00:18.094 parseInt=0:00:17.656 IntegerConverter=0:00:13.594 NumberUtils.toInt=0:00:13.734 – Pangea Jun 23 at 3:50

6 Answers

vote up 3 vote down

If efficiency is your concern, then creating an Integer object is much more expensive than parsing it. If you have to create an Integer object, I wouldn't worry too much about how it is parsed.

Note: Java 6u14 allows you to increase the size of your Integer pool with a command line option -Djava.lang.Integer.IntegerCache.high=1024 for example.

link|flag
1  
+1 for -Djava.lang.Integer.IntegerCache.high Is there a switch for Long as well? – Thilo Jun 23 at 13:52
No, not sure why. – Peter Lawrey Jun 23 at 19:54
vote up 0 vote down

Your best bet is to use Integer.parseInt. This will return an int, but this can be auto-boxed to an Integer. This is slightly faster than valueOf, as when your numbers are between -128 and 127 it will use the Integer cache and not create new objects. The slowest is the Apache method.

private String data = "99";

public void testParseInt() throws Exception {
	long start = System.currentTimeMillis();
	long count = 0;
	for (int i = 0; i < 100000000; i++) {
		Integer o = Integer.parseInt(data);
		count += o.hashCode();
	}
	long diff = System.currentTimeMillis() - start;
	System.out.println("parseInt completed in " + diff + "ms");
	assert 9900000000L == count;
}

public void testValueOf() throws Exception {
	long start = System.currentTimeMillis();
	long count = 0;
	for (int i = 0; i < 100000000; i++) {
		Integer o = Integer.valueOf(data);
		count += o.hashCode();
	}
	long diff = System.currentTimeMillis() - start;
	System.out.println("valueOf completed in " + diff + "ms");
	assert 9900000000L == count;
}


public void testIntegerConverter() throws Exception {
	long start = System.currentTimeMillis();
	IntegerConverter c = new IntegerConverter();
	long count = 0;
	for (int i = 0; i < 100000000; i++) {
		Integer o = (Integer) c.convert(Integer.class, data);
		count += o.hashCode();
	}
	long diff = System.currentTimeMillis() - start;
	System.out.println("IntegerConverter completed in " + diff + "ms");
	assert 9900000000L == count;
}

parseInt completed in 5906ms
valueOf completed in 7047ms
IntegerConverter completed in 7906ms
link|flag
vote up 3 vote down

If efficiency is your concern, use int: it is much faster than Integer.

Otherwise, class Integer offers you at least a couple clear, clean ways:

Integer myInteger = new Integer(someString);
Integer anotherInteger = Integer.valueOf(someOtherString);
link|flag
I agree. Using the Integer class seems counter to the efficiency concern. Unless of course the efficiency is with regards to just string conversion, rather than integer storage or manipulation. – aberrant80 Jun 23 at 6:15
Use the Integer.valueOf(someOtherString), it's smarter and can possibly use cached Integer instances. – deterb Jul 17 at 3:06
vote up 0 vote down

ParseInt returns an int, not a java.lang.Integer, so if you use tat method you would have to do

new Integer (Integer.parseInt(number));

I´ve heard many times that calling Integer.valueOf() instead of new Integer() is better for memory reasons (this coming for pmd)

In JDK 1.5, calling new Integer() causes memory allocation. Integer.valueOf() is more memory friendly.

http://pmd.sourceforge.net/rules/migrating.html

In addition to that, Integer.valueOf allows caching, since values -127 to 128 are guaranteed to have cached instances. (since java 1.5)

link|flag
1  
Java now supports auto-boxing, the automatic conversion between boxed and primitive types. So "Integer i = new Integer (Integer.parseInt(number));" is better written "Integer i = Integer.parseInt(number);" – Jim Ferrans Jun 23 at 5:57
vote up 6 vote down

Don't even waste time thinking about it. Just pick one that seems to fit with the rest of the code (do other conversions use the .parse__() or .valueOf() method? use that to be consistent).

Trying to decide which is "best" detracts your focus from solving the business problem or implementing the feature.

Don't bog yourself down with trivial details. :-)

Ron

On a side note, if your "use case" is specifying java object data types for your code - your BA needs to step back out of your domain. BA's need to define "the business problem", and how the user would like to interact with the application when addressing the problem. Developers determine how best to build that feature into the application with code - including the proper data types / objects to handle the data.

link|flag
we have been using IntegerConverter consistently (across 70-80) classes. But IntegrConverter seems to use reflection creating Intger objects...convert(Integer.class,-1). So consistency is not the issue but efficiency! tx anyway – Pangea Jun 23 at 3:46
we have been using IntegerConverter consistently (across 70-80) classes. But IntegrConverter seems to use reflection creating Intger objects...convert(Integer.class,-1). So consistency is not the issue but efficiency! tx anyway – Pangea Jun 23 at 3:47
we have been using IntegerConverter consistently (across 70-80) classes. But IntegrConverter seems to use reflection creating Intger objects...convert(Integer.class,-1). So consistency is not the issue but efficiency! tx anyway – Pangea Jun 23 at 3:48
1  
That's too bad, as I like that method the least because there are "built in" simpler ways to do it. :-) I can't however imagine it causing any kind of performance problem - so I would stick to the "if it ain't broke, don't fix it" rule. – Ron Savage Jun 23 at 3:53
vote up 2 vote down

I know this isn't amongst your options above. IntegerConverter is ok, but you need to create an instance of it. Take a look at NumberUtils in Commons Lang:

Commons Lang NumberUtils

this provides the method toInt:

static int toInt(java.lang.String str, int defaultValue)

which allows you to specify a default value in the case of a failure.

NumberUtils.toInt("1", 0)  = 1

That's the best solution I've found so far.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.