Tagged Questions
5
votes
2answers
75 views
Java ParseInt Sanity Check
I'm trying to parse a int from a String array element. Here is my code:
String length = messageContents[k].replace("Content-Length:", "").replace(" ", "");
System.out.println("Length is: " + length);
...
5
votes
3answers
228 views
Crashing due to Integer.parseInt
I'm trying to import text from a text file which has been generated in another Activity. The generated text file is made up of a String ArrayList which only contains numbers and the other random text ...
4
votes
3answers
81 views
Converting 32-bit binary string with Integer.parseInt fails
Why does this part of code fail:
Integer.parseInt("11000000000000000000000000000000",2);
Exception in thread "main" java.lang.NumberFormatException: For input string: ...
4
votes
5answers
2k views
Beginner Java Question about Integer.parseInt() and casting
so when casting like in the statement below :-
int randomNumber=(int) (Math.random()*5)
it causes the random no. generated to get converted into an int..
Also there's this method I just came ...
3
votes
5answers
42 views
Proper way to avoid parseInt throwing a NumberFormatException for input string: “”
When I run parseInt:
Integer.parseInt(myString);
it throws:
NumberFormatException: For input string: ""
Does this mean I have do something like this?
if(StringUtils.isNotBlank(myString))
...
3
votes
3answers
92 views
Help in automatically changing value upon ItemChange in JComboBox
I have a program in which I am using 3 things, a checkbox, a combobox and a textfield. The logic works like this if checkbox is enable then combobox and textfield are enable unless not.
Then set some ...
2
votes
1answer
91 views
integer parse int not working
I am trying to make a simple addition using java web services. I have a problem getting the input from the JTextField into my ints so that the program can carry out the addition. The code I have is ...
2
votes
3answers
168 views
Integer.parseInt(scan.next()) or scan.nextInt()?
I oscillate with using
import java.util.Scanner;
.
.
.
Scanner scan = new Scanner(System.in);
.
.
.
Integer.parseInt(scan.next());
or
import java.util.Scanner;
.
.
.
Scanner scan = new ...
2
votes
1answer
83 views
Parse a substring?
I'm trying to convert the first two characters of a String using the parseInt method but I cannot. It's supposed to look like this:
String firstChars = IntMessage.substring(0,2);// firstChars is a ...
2
votes
3answers
110 views
Need help splitting a string into two separate integers for processing
I am working on some data structures java HW and am a little stuck on how to split this string into two integers.. basically the user will enter a string like '1200:10', I used indexOf to check if ...
2
votes
3answers
166 views
Java Integer parseInt error
I have following problem:
I want to convert some Binary Strings to an integer:
eargb = Integer.parseInt(al + re + gre + blu, 2);
but I get following exception. Why?
...
2
votes
7answers
363 views
Java - checking if parseInt throws exception
I'm wondering how to do something only if Integer.parseInt(whatever) doesn't fail.
More specifically I have a jTextArea of user specified values seperated by line breaks.
I want to check each line ...
1
vote
5answers
61 views
Why do I get a NumberFormatException with this Integer.parseInt(x, y)?
My code is simply:
int idec = Integer.parseInt(value, 16);
When I enter as value "01dae610", I correctly get "31122960".
When I enter as value "d149e510", I get a java.lang.NumberFormatException. ...
1
vote
4answers
3k views
Is J2ME's Integer.parseInt() broken?
While writing a game for J2ME we ran into an issue using java.lang.Integer.parseInt()
We have several constant values defined as hex values, for example:
CHARACTER_RED = 0xFFAAA005;
During the ...
0
votes
6answers
60 views
Does the parseInt() method delete all zero's?
I'm using this code to set the id of any button:
String s = "" + i + j;
int getal = Integer.parseInt(s);
button.setId(getal);
Variables "i" and "j" are always from 0 tot 9. A single digit. However, ...
0
votes
6answers
125 views
Java Integer.parseInt() Not Working for Large Numbers
I have the following simple piece of code which is intended to detect that a given IPv4 address indeed only has numeric values (that is after the dots have been stripped):
import ...
0
votes
6answers
92 views
Why does this Java code throw a NumberFormatException?
I'm playing around with a GUI Sudoku solver that uses an array of JTextFields (gridArray) for display and an int array (sudokuGrid) for the actual solving. When I run it and it tries to cast the ...
0
votes
3answers
96 views
Unable to parse ARGB hex to integer
I'm trying to parse an ARGB hex String to an int but it's not working.
My code:
int color = Integer.parseInt("ff686868", 16);
Exception:
java.lang.NumberFormatException: unable to parse ...
0
votes
1answer
65 views
I want to be able to convert numbers into text according to the ASCII decimal table
I am trying to make it so that I can take individual three-character substrings and convert them to integers under the conditions tht the length of the String is a multiple of three. The integers ...
0
votes
2answers
83 views
Where/how can I allow non-numeric values in my program?
I am making this little program using command line arguments, I have like 90% of the work done. But I am trying to allow the user to enter non numerical values aswell..
User input/output example
...
0
votes
1answer
106 views
Parse integers from string android java
Hi i got the following code which i use to get some integers from a string. I am separating successfully the negative and positive integers by combining the string with the next number if the char at ...
0
votes
7answers
237 views
Java parseInt() question
Why is it that when I use parseInt for this:
private String certainNumber;
public int getNumber()
{
return Integer.parseInt(certainNumber);
}
It compiles.
But If I were to do this:
public ...
0
votes
2answers
129 views
ParseInt raises exception when reading numeric output of StringBuffer
My application reads the output of a command line programs which is always a 0-3 digit number. The data starts as a stringBuffer, is sent .toString and the third step is to convert it to an integer ...
0
votes
2answers
498 views
Beginner with Android/Java - help with Intent and adding two numbers
i've been working on this for several days and i'm just out of ideas.
i've searched everywhere and have the book ProAndroid2.
i'm trying to do something simple (i thought) which was have two text ...
0
votes
2answers
606 views
Java: parse int value from a char
I just want to know if there's a better solution to parse a number from a character in a string (assuming that we know that the character at index n is a number).
String element = "el5";
String s;
s ...
0
votes
4answers
155 views
need help with parseInt
how can i get for example the integer codeInt=082 from String code='A082'
i have tried this:
int codeInt = Integer.parseInt(code.substring(1,4));
and i get codeInt=82 ,it leaves the first 0 but i ...
-1
votes
4answers
64 views
Cannot assign string from array to the int
I have written the following line of code that reads the data in a text file and stores it in a array. Everything works fine except for when I try and convert the String into int.
Here I am trying ...
-2
votes
2answers
88 views
parseInt crashing
I have a text that looks like this: function 23 34 56 and I need to extract the 23, 34 and 56 as numbers. So I write something like:
String s = "function 2 3 4";
String[] tokens = ...