Tagged Questions

5
votes
2answers
88 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); ...
4
votes
3answers
131 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
6answers
2k views

Is there an equivalent to JavaScript parseInt in C#?

I was wondering if anyone had put together something or had seen something equivalent to the JavaScript parseInt for C#. Specifically, i'm looking to take a string like: 123abc4567890 and return ...
3
votes
1answer
112 views

parseInt crashing android app

So I'm trying to make a calculator app (just to get a hang of android development), and I noticed with some testing that the parseInt conversion from "String tack1" is causing the app to crash. Can ...
2
votes
3answers
175 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
5answers
734 views

Javascript parsing int64

How can I convert a long integer (as a string) to a numerical format in Javascript without javascript rounding it? var ThisInt = '9223372036854775808' alert(ThisInt+'\r' ...
2
votes
1answer
202 views

Can't use parseInt for images - Android

I have a problem with putting different images in a list. I created a custom list and everything worked fine, except the images issue. My issue is with these line - Integer p = ...
0
votes
6answers
154 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
4answers
141 views

Android NumberFormatException error with a simple number input from EditText

So I have a simple Edit-text with number input. User enters his phone number and it is saved into DB obviously that is the goal. now every time i do int ...
0
votes
1answer
38 views

postfix to a parseInt resulting in error

The line: n2[i-dec-1] = parseInt(n2[i-dec-1])++; The error: "invalid left-hand side expression in postfix operation." solution: n2[i-dec-1] = parseInt(n2[i-dec-1])+1; I am curious why the postfix ...
0
votes
4answers
164 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 ...