About 202,000 results
Open links in new tab
  1. How do I convert a String to an int in Java? - Stack Overflow

    You can convert a String to an int in Java using Integer.parseInt(). Here's a quick example: String value = "1234"; int number = Integer.parseInt(value); Make sure the string contains a valid integer, otherwise a NumberFormatException will be thrown.

  2. Java - Convert integer to string - Stack Overflow

    Integer class has static method toString() - you can use it: int i = 1234; String str = Integer.toString(i); Returns a String object representing the specified integer. The argument is converted to signed decimal representation and returned as a string, exactly as if the argument and radix 10 were given as arguments to the toString(int, int ...

  3. Most efficient way of converting String to Integer in java

    Jun 25, 2009 · 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. Note 2: If you are reading raw data e.g. bytes from a file or network, the conversion of these bytes to a String is relatively expensive as well.

  4. How to convert a string to an integer in JavaScript?

    As of ES2015 you can use Math.trunc() to convert strings to integer: Math.trunc("33.33") // returns 33 Math.trunc("-5999999999.99999") // returns -5999999999 Or, if you need to support old browsers or you just prefer to avoid using a function, you can use the remainder operator trick to get the remainder when dividing by 1, then subtract.

  5. java - How do I convert from int to String? - Stack Overflow

    Nov 5, 2010 · Mostly ditto on SimonJ. I really dislike the ""+i idiom. If you say String.valueOf(i), Java converts the integer to a string and returns the result. If you say ""+i, Java creates a StringBuilder object, appends an empty string to it, converts the integer to a string, appends this to the StringBuilder, then converts the StringBuilder to a String.

  6. Manually converting a string to an integer in Java

    Jan 17, 2012 · This function to convert a string number an integer without using java build-on functions fro math,string manipulation ,number formatting or printing. please execute the program. – Mahendra Sri Dayarathna

  7. java - Converting String to Integers the safe way - Stack Overflow

    Jun 4, 2013 · I have a little method that amongst other things also converts a string into an integer. Since the string is a parameter of the method I want to make sure that that string is convertable. So I was just wondering what would be the safest and / or fastest way.

  8. java - Integer to String conversion methods - Stack Overflow

    Nov 7, 2013 · b) Convert an int to a String. int one = 1; String oneAsString = String.valueOf(one); c) Convert a String to an Integer. String oneAsString = "1"; Integer one = Integer.valueOf(oneAsString); d) Convert a String to an int. String oneAsString = "1"; int one = Integer.parseInt(oneAsString); There is also a page in the Sun Java tutorial called ...

  9. java - How do I convert a String to a BigInteger? - Stack Overflow

    Mar 30, 2013 · I'm trying to read some really big numbers from standard input and add them together. However, to add to BigInteger, I need to use BigInteger.valueOf(long);: private BigInteger sum = BigInteger.v...

  10. java - Convert List<String> to List<Integer> directly - Stack Overflow

    May 23, 2012 · After parsing my file " s" contains AttributeGet:1,16,10106,10111 So I need to get all the numbers after colon in the attributeIDGet List.

Refresh