Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

30
votes
3answers
1k views

Math.random() returns value greater than one?

While playing around with random numbers in JavaScript I discovered a surprising bug, presumably in the V8 JavaScript engine in Google Chrome. Consider: // Generate a random number [1,5]. var rand5 ...
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
227 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 ...
5
votes
2answers
257 views

parseInt % and px problem

<div style="left: 100%"></div> parseInt($("div").css("left"), 10); When I try to get value of left, some browsers give result in pixels, some in %. Here is an example ...
4
votes
3answers
77 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 ...
4
votes
1answer
283 views

int from string in go

What's the function to create a int value from string i := ???.????( "10" )
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
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
0answers
118 views

Why is a GWT application crashing on blackberry OS7?

I tried the following code on a blackberry os7 browser: <html> <body> test page <script> i = 0; if(i < -2147483647) { alert("very low") } if(i < -2147483648) { ...
3
votes
1answer
96 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 ...
3
votes
3answers
285 views

is NaN equals to NaN

parseFloat("NaN") returns "NaN", but parseFloat("NaN") == "NaN" returns false. Now, that's probably a good thing that it does return false, but I don't understand how this is so. Did the ...
3
votes
3answers
91 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 ...
3
votes
7answers
63 views

How can I get the width and height of a div element with jquery?

How can I get the width and height of a div element? for instance, <div style="width:100px;height:100px;overflow:hidden; float:left; margin:0px 0px 5px 0px; border:1px solid #000;"> ...
3
votes
1answer
185 views

Javascript parseInt with radix 16 issue

The alert statement alert(parseInt("0x00C02700010004E9",16)); incorrectly displays 54086076498707690 instead of the correct value 54086076498707689. Please notice the last two digits!! Could anyone ...
3
votes
3answers
1k views

In jQuery, should i use parseFloat(el.width()) or parseInt(el.width(),10)? which one is more preferred

I always had this question: When i dont mind the exact floating number Which one is preferred? parseFloat someValue = parseFloat(el.outerWidth())+parseFloat(ele2.css("marginRight")), ...
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
167 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
108 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
165 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
357 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 ...
2
votes
5answers
645 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
193 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 = ...
2
votes
3answers
2k views

Comparing parseInt to NaN in Actionscript 3

The AS3 documentation states that if you pass in a string to parseInt that is not a number it will return NaN. However, when I try to compare to NaN the compiler gives me the following error: ...
1
vote
3answers
37 views

parseInt rounding for number of days in month

Number of days in month calculated this way: var start = new Date(d.getFullYear(),d.getMonth(),1); var end = new Date(d.getFullYear(),d.getMonth()+1,1); var daysInCurMonth = ...
1
vote
5answers
60 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
2answers
117 views

JavaScript parseInt IE Nan error

I have function in JavaScript: function calc(num) { if (num <= 22) { return parseInt(num); } else { num += ''; var curr = 0; for (var i = 0; ...
1
vote
6answers
97 views

how to convert array of integers into hex string and vice versa in javascript

I have array of 32 bit integers in javascript. How to convert it into the Hex string and again build the same 32 bit integer array from that Hex string when required? hexString = ...
1
vote
4answers
593 views

Remove leading zeros in Javascript [closed]

Possible Duplicate: Truncate leading zeros of a string in Javascript What is the simplest and cross-browser compatible way to remove leading zeros in Javascript ? e.g. If I have a textbox ...
1
vote
3answers
126 views

Increment Badge Count

jQuery.fn.add = function() { var Bnumber = $(this).find(".B_Add"); if (Bnumber) { Bcount = parseInt(Bnumber.html()) + 1; $(this).find("div.B_Add").remove(); ...
1
vote
2answers
3k views

Unable to parse as integer

Alright...I have this .txt file (UTF-8) 4661,SOMETHING,3858884120607,24,24.09 4659,SOMETHING1,3858884120621,24,15.95 4660,SOMETHING2,3858884120614,24,19.58 And this code FileInputStream fis = new ...
1
vote
1answer
580 views

Grails/Groovy: URL params (max, offset) NumberFormatException thrown when blank/strings

in the controller params.max = Math.min(params?.max?.toInteger() ?: 10, 20) params.offset = params?.offset?.toInteger() ?: 0 if you enter in the following urls /books?offset=10&max= ...
1
vote
4answers
198 views

Javascript parseInt gives very unexpected results

I'm parsing a string to check if it's a date, and by chance we now discovered that my method doesn't work for dates in august or september. This is what I do (the input isn't really hard-coded, ...
1
vote
3answers
1k views

ParseInt not working on Jquery ajax response

I am having a peculiar problem with getting an integer from an ajax response. Whenever I call the following code, parseInt(data) returns NaN despite data being a string. function poll() { ...
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
5answers
35 views

Jquery subtracting 1 from a value with .text and keeping html

I'm trying to subtract 1 (one) from a value with jQuery. I've managed to do so like this: $('.notis').text(parseInt($(".notis").text()) - 1); Problem is that the <a> this is subtracting from ...
0
votes
6answers
124 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
3answers
59 views

parseInt returns undefined

Facebook's code changes on Tuesday night have impacted how parseInt works in FBJS. Where I previously used it to convert decimal numbers to straight integers, now it always returns undefined. For ...
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
4answers
114 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
47 views

Problems from Editable (EditText) to Integers

I am having problems getting the integer values for a simple math program out of the edittext boxes. I can get a string out of it but when I try to convert it to a integer it crashes. I have tried: ...
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
104 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
235 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
1answer
31 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 ...

1 2