The parseint tag has no wiki summary.
0
votes
4answers
36 views
Why won't parseInt work on a large number with leading 0's?
avar = "0000013482000000";
t = parseInt(avar);
When I run that, t is 92 for some reason. If I remove the leading 0's, then it works just fine. Why would that be?
0
votes
4answers
44 views
Array Index Out Of Bounds Exception using Integer.parseInt
My program complies but when I run the program it gives me an "Array Index Out of Bounds Exception"
public void readBoard(String filename) throws Exception {
File f = new File("myBoard.csv");
...
-1
votes
1answer
65 views
ActionPerformed and ActionListener [closed]
My program asks the user: How many course have you completed? So, the users has to enter the number of courses completed on a JTextField component. My program then converts the String that has been ...
0
votes
3answers
55 views
Parse Integer error
For some reason I cant get a string number value to convert to an integer the error I get is
run:
Exception in thread "main" java.lang.NumberFormatException: For input string: "6327818260"
at ...
-3
votes
5answers
52 views
Checking for a specific characters in Strings
I have the following code that reads a file that has 3 integers in the formats of a single number, or x/y where x is an int as is y.
I'm trying to read the file, then split at each white space in ...
2
votes
3answers
64 views
Java: Comparing ints and Strings - Performance
I have a String and an int, lets say: String str = "12345"; and int num = 12345;. What is the fastest way of seeing if they are the same, str.equals("" + num) or num == Integer.parseInt(str) (Or is ...
1
vote
3answers
41 views
Find number in string between spaces and parse it
I have a file with lines in following format:
d 55 r:100:10000
I would like to find that 55 and parse it to int. How can I do this ? I would like to make it variable-space-in-between-proof. ...
0
votes
1answer
57 views
NumberFormatExceptions being thrown everywhere. Why? (parseInt)
First time poster here with a seriously annoying issue. I have decided to create a text-based RPG in Java in order to consolidate what I have been learning. And with all lengthy games, a ...
0
votes
2answers
68 views
How to be sure about Integer value of a JTextfield? [duplicate]
I have a JTextField which users must enter a number in that.
I want to check the value to be sure that it contains an **Integer*.*
Here is the code:
JTextField Tex_amount=new JTextField();
.
.
.
...
0
votes
0answers
82 views
setText() method doesn't seem to work
Hi, I am pretty new to Java. I wrote this code but setText() doesn't seem to work. I mean, I can't reset the control after having typed a value. What am I doing wrong?
String gelen = ...
1
vote
2answers
54 views
How to check the range of the user input?
My goal is to prompt the user to input the number of rows and columns to generate a table using javascript (refer to the code below). However, the range of the number of rows/columns should be from 1 ...
0
votes
2answers
38 views
Logic and floats, 0.75 > 0 = false?
In Javascript I have an if statement that is failing that should be passing and I cannot figure out why. Here's the structure of the if.
if(parseInt(obj.OptionCredit) > parseInt(Account.Credits))
...
0
votes
2answers
130 views
Retrieve image from drawable and String convert to Int issue
i am currently doing a page which retrieve data from php server and now trying to retrieve and image from drawable by using setImageResource but is not working, i dunno what wrong with it and is it ...
0
votes
4answers
39 views
conditions I need to satisfy before running my program
I have java program that I want to run at the command line as a jar. But before I run my function that processes the data, I have 2 conditions that I need to satisfy. 1. args[0] needs to be an ...
0
votes
5answers
161 views
Identify if a string has any non-integer characters, in JavaScript [duplicate]
JavaScript parseInt() does not seem to work the same way as Java parseInt().
A very simple example is:
document.write(parseInt(" 60 ") + "<br>"); //returns 60
document.write(parseInt("40 ...
0
votes
2answers
85 views
Unable to convert to Int from String
I am working on a solution to the TSP problem. I have generated all the permutations of the String "123456", however, I need to convert this into an ArrayList of Integer like this ...
-5
votes
1answer
32 views
Printint data on text JTextArea also prints issues [closed]
Good evening I have a problem I need to print only textArea Xo but is showing me the latest issue of the list someone could help me.
private void NumerosActionPerformed(java.awt.event.ActionEvent ...
0
votes
2answers
64 views
getting the difference between two dates [duplicate]
I'm working on an assignment where I must use Javascript. In my application a user types a date into a form. Then I try to compare that date with the current date. The difference is the number of days ...
10
votes
4answers
275 views
When to use parseInt
Which rule do I have to follow when extracting numbers out of DOM and calcluation with them? How does javascript knows that a value is a number or not? Should I always use parseInt?
Given following ...
0
votes
2answers
60 views
am having validation form for my textfields
the code is not checking whether the textfields are empty
//the button calculates your inputs for cat1, cat2,exam and gives average and total
btnCompute_1 = new JButton("COMPUTE");
...
2
votes
3answers
195 views
Java - Integer.parseInt() not returning a negative number when radix=2
As far as I know, when using 2's complement, and the first number is a 1, then you flip the numbers and find the value of the new byte and make it a negative.The javadoc says that ...
0
votes
2answers
96 views
Java Integer.ParseInt bug
Initial string = 61440 <CARRE> 150 381 188 419 </CARRE>
I've split this string into an array, which now contains the coordinates
String[] coord = t.group(2).split(" ");
The resulting ...
0
votes
1answer
91 views
jquery parseInt nan in firefox
The following line of code:
$border_width = parseInt($('#jma_border_element').css('border-width'));
console.log($border_width);
The excepted value 5. It works in chrome, but nan in firefox(18.0.2)
0
votes
2answers
40 views
How to change elements in the ArrayList to a different object type?
I have an ArrayList<Character>. How do I change the elements inside the array into integers? The code is in Java.
Example:
private ArrayList<Character> arrayList;
I tried ...
1
vote
3answers
80 views
No idea why this code throws a NumberFormatException. (Valid input)
So I'm reading this:
10011011001;0110,1001,1001,0,10,11
And running this code on it:
String[] parts = line.split(";");
System.out.println("Part 1 = " + parts[0]);
...
5
votes
3answers
86 views
How can I convert a large string to integer in java?
Given the following string:
3132333435363738396162636465666768696a6b6c6d6e6f70
I converted the string to hex and now i want to file write it as hex not a string. I tried converting it to int but ...
0
votes
0answers
39 views
Integer-String Parser
I am parsing an XML document, and when I try to save the String (data) that I am reading as an Integer, I found an exception.
Integer.parseInt(data)
I also tried changing the atribute type to Byte ...
0
votes
2answers
91 views
how to add tow or more than two input box values in javascript or jquery
i have 110 text boxes and i wanted to sum the values which are available in those 110 text boxes, few may have values so i have written code like below but it is does not give me the correct value in ...
1
vote
2answers
699 views
output string using java textfield.setText() by using for loop
The question is, I try to make second textfield (textFieldGen) to print out the exact result likes console. Currently, second textfield shows one string only.
This is my first coding on java GUI.
...
0
votes
2answers
35 views
Convert complicates string into integer?
I've retrieved a string into a variable with innerHTML method. The string is:
£ 125.00
<!-- End: pagecomponent/pricesplit -->
I only want the 125.00 part. Is it possible to use the ...
0
votes
4answers
45 views
Adding integers on appending
Please look at the following code. I can't get my values to add up. The digit just adds itself to the back of the string. Wonder any way to go about it.
$("a[name='older_post']").click(function(){
...
0
votes
4answers
584 views
In Java, how do I check if input is a number?
I am making a simple program that lets you add the results of a race, and how many seconds they used to finish. So to enter the time, I did this:
int time = ...
0
votes
2answers
109 views
JavaScript - Why does my parseInt return NaN? [closed]
var bucketId = $.cookie('bucketId');
console.log(bucketId);
var bucketIdNumber = parseInt(bucketId, 10);
console.log("bucketIdNumber " + bucketIdNumber);
In the code about bucketId returns "17".
So ...
3
votes
8answers
193 views
Why Integer.parseInt is compiling without try catch?
As far as I understand in java a function which throws an exception should not be compiled without a try and catch or a deceleration in the function above it.
How come then this code is legitimate ...
3
votes
3answers
145 views
Why my parseInt function is not converting my string into integer?
What am I going wrong here? I'm trying to convert a string to an integer to use in addition.
I have an image with a class of portfolio and a src of images/portfolio-images/gbn1.jpg
The first alert ...
2
votes
5answers
149 views
toString or to parseInt javascript
So today I encountered this scenario. I had an integer and a string I needed to compare. In order to compare the two I would either have to toString() the integer, or parse the string to an int.
...
1
vote
2answers
203 views
Why am I getting a NumberFormatException trying to parse an integer from string in Android?
I am looking for an update function for a custom ROM based tool. I used this code http://www.androidsnippets.com/check-for-updates-once-a-day as a base and soon realized that I couldn't use Dropbox ...
0
votes
2answers
97 views
[Android]Error during parseInt()
Writing my first android app. Almost everything works except this function. Even when all the text boxes have some numeric value, the app crashes in this function. Also, is there a better way to ...
0
votes
0answers
20 views
How do I make so that when I input a value into a scanner if it is not an integer it won't give me an error?
import java.util.Random;
import java.util.Scanner;
public class Test {
static Scanner keyboard = new Scanner(System.in);
static Random generator = new Random();
public static void ...
0
votes
2answers
142 views
ParseInt in an array
import java.util.Scanner;
public class NumAverage {
public static void main (String [] args)
{
//int a,b;
int[] numbers = new int [10];
Scanner numreader = new ...
1
vote
4answers
135 views
Value in TextField throws java.lang.NumberFormatException error
So this is how I have my code (of course, not finished because I don't want to do any other work until I can figure out why I'm getting the error). It compiles no problem but when I try to run it I ...
1
vote
2answers
88 views
Why do I need parseInt() to avoid NaN?
I have a 2D array with 2 values and I want to print the difference with a little message.
var array = [[0,2],[3,4]];
console.log(array[0][1]-array[0][0]) //prints '2'
...
2
votes
3answers
429 views
cannot find symbol: parseInt
I have allready compiled a few tiny programms in java and everything was fine. But my new code has any problem.
class myclass
{
public static void main (String[] args)
{
int x, y;
String s ...
9
votes
5answers
298 views
Why does 230/100*100 not return 230? [duplicate]
Possible Duplicate:
Is JavaScript’s Math broken?
In Javascript, I cannot figure out why 230/100*100 returns 229.99999999999997, while 240/100*100 returns 240.
This also applies to 460, 920 ...
1
vote
1answer
90 views
How to parse more than one string into an int in java
Ok, so I'm having a lot of trouble with a programming assignment. We are to read information from a text file and format it using certain methods we created. I am able to read information from the ...
0
votes
1answer
191 views
First Android App - Can't convert EditText to integer value
I'm trying to write my first Android app. It will take a number input by a user in an EditText field, convert it to an integer, then find the factors. I want to port this from a Java program that I ...
0
votes
2answers
138 views
My VAT calculation is wrong
I'm trying to do a function for making a small calcul with vat.
So I have the following code:
<script type="text/javascript">
function calcdebours()
{
var taux = ...
0
votes
3answers
105 views
Modify parseInt method: Javascript
I do not want use each and every time parseInt('08', 10) for each string to integer conversion,
Can we modify parseInt method, so that i can use only parseInt('08') instead of parseInt('08', 10).?
1
vote
3answers
183 views
jquery .each loop on array with parseInt - gives NaN
I have setup a loop using .each to get json encode string to an array to be used for jquery jqBarGraph
The loop:
$.each(dataarray, function (i, item) {
JSarray[i] = ...
-3
votes
2answers
104 views
javascript parseInt [duplicate]
Possible Duplicate:
How to parseInt a string with leading 0
If I parseInt("01") in javascript its not the same as parseInt("1")???
start = getStartEugene("MN01");
start2 = ...




