The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
34 views

Using JComboBox - why does getSelectedItem() work and Java objects?

I have a combo box like this: static final String[] intString = {"Dist.","4","5","6","7","8"}; static JComboBox numList = numList = new JComboBox(intString); And I need to grab which item is ...
2
votes
3answers
54 views

How can I find int values within a string

I have a string, e.g. "ksl13<br>m4n", and I want to remove all non-digit characters in order to get the int 134. Integer.parseInt(s) obviously isn't going to work, but not sure how else to go ...
0
votes
1answer
60 views

How to change date value to Unicode with Javascript?

How can I convert a month and year value into Unicode using Javascript? For instance, "6, 2013" would become "\u1046, \u1042\u1040\u1041\u1043" (Myanmar text). Patrick pointed me to Codepen where I ...
-4
votes
1answer
62 views

Why java not taking numbers from GUI?

I created a loan calculator. but its not taking value for calculation. could you please help me to find what did go wrong please. import java.awt.*; import javax.swing.*; public void initUIPanel() ...
2
votes
1answer
39 views

Why am I getting weird result using parseInt in node.js? (different result from chrome js console)

I just noticed that: //IN CHROME JS CONSOLE parseInt("03010123"); //prints: 03010123 //IN NODE.JS parseInt("03010123"); //prints: 790611 Since both are based on V8, why same operation yielding ...
0
votes
1answer
36 views

Exception in thread “main”, I think Integer.ParseInt() is stuck but I dont know why

My program gets 2 numbers from the user, one length 10 and one length 3. I am getting them as a string. I am then trying to use Integer.parseInt() to turn them into an integer. I have no code errors ...
0
votes
2answers
69 views

Integer.parseInt Confusion

I am having difficulties trying to make an application I am coding to distinguish whether or not the args[] input of the user is a String or an int. If an int value is typed, it will be listed and ...
1
vote
2answers
57 views

Searching for null slot in array

I am trying to search for the first null slot in the array. Can you parseInt() quotes to do this, or would I use "stobar[b] == null"? int[] stobar = new int[100]; for(int b = 0; b < stobar.length; ...
1
vote
4answers
66 views

String split with parseInt in Java

We are asked to build a constructor for a Stopwatch that takes a string in the format of "##:##:###" and updates minutes, seconds and milliseconds (private instance variables) accordingly. For ...
0
votes
4answers
41 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
59 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
69 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
65 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
57 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
77 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
50 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
62 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
80 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
86 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
56 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
41 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
270 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
41 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
221 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
98 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
35 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
73 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
293 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
65 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
309 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
106 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
115 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
43 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
85 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
88 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
127 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
1k 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
38 views

Convert complicates string into integer?

I've retrieved a string into a variable with innerHTML method. The string is: £&nbsp;125.00 <!-- End: pagecomponent/pricesplit --> I only want the 125.00 part. Is it possible to use the ...
0
votes
4answers
46 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
829 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
126 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
223 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
159 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
161 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
236 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
112 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
22 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
192 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
143 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 2 3 4