0
votes
1answer
16 views

Getting spinner to show what they picked

so my spinner works but what im having the problem is that i want it to show what they choose for the spinner but not until the click on a confirm button that i have set up. i was guessing something ...
0
votes
2answers
50 views

2d Array sorting by lowest to highest number

I would like to sort this 2D array so it would output something like this: 1 2 3 4 5 6 7 8 9 and also tell me how many moves it made to rearange. Thank you allot ! Here is my code so far: ...
0
votes
4answers
33 views

read from a file, split the line and store in an array JAVA

Okay guys first and foremost let me say that I am a NOVICE when it comes to programming in JAVA. I am teaching myself, so with that said please bear with me as I am doing the best I can with what I ...
0
votes
4answers
50 views

Why does this function in Java doesn't affect the result?

class Test { public static void main(String[] args) { int[] list = {1, 2, 3, 4, 5}; reverse(list); for (int i = 0; i < list.length; i++) { ...
0
votes
1answer
43 views

Application crashes when I try to access a multidimensional array

For some mysterious reason, the following code makes my Android application crash : public class NearestFixMarker { private static MyArrayListMarker nearestFixMarker[] = new ...
0
votes
0answers
43 views

Array Index Out Of Bounds Exception with HashMap in android

having a problem with this bit of code below. What it's supposed to do is take the numbers in arrDBNumbers and use those numbers to fill listview with the 6 different images. arrDBNumbers is full, and ...
-10
votes
2answers
68 views

How can I remove duplicates value in array and left only one of this? [closed]

Can any one help me how could I remove duplicate value and return one copy of the duplicate values in an array?
0
votes
1answer
65 views

I keep getting Error: int cannot be dereferenced. How do I fix it?

I am beginning to program War (the card game) and the methods have already been instantiated I need to know why I keep getting these errors. import java.util.*; public class CardGame { public ...
0
votes
4answers
40 views

Searching a 2D Array

I have instantiated a 2D array of an editable number of rows and a set number of three columns. It is randomly filled with 0's and 1's using the Random .nextInt(2) method. After the array is ...
0
votes
3answers
37 views

Java single dimensional array to multidimentional array formatting

okay so In my code i have `Object[][] X = new object[30][30]; X[][2] = Class.Method.method(); //returns an array of the same Object X is formated to be, //but in array form. EX: it will return ...
0
votes
2answers
48 views

Need a common way to write an array for Windows 8 Store, Iphone, and Android

I am currently writing an app that takes data and presents it to the user in a type of Q and A study program. First app that I am writing so outside of my normal basic C++ shell on this. Currently ...
-3
votes
0answers
48 views

Why is this result here? [closed]

When I calculate it I come with the result of 25. I add 2+4-4+(-2)+5+1+9+3+0+1+2+4=25 And the eclipse shows 6... What am i doing wrong. I took this exercise from a midterm that professor did last year ...
-1
votes
0answers
76 views

Array of class in a class

I need to do a Class "categories" that has some items, like name, shortname, etc. And it has an array for a list of another "subcategories". I have problems with that, I don't know if that is the ...
0
votes
4answers
59 views

Why will this not display?

It won't display the line of code that has the word put in it. I want it to display the line of code that contains the substring "put", case insensitive. The first and second lines should be printed ...
-1
votes
2answers
73 views

Call an method of a class in an array - Java

I am having a problem with a project. So basically what I have is a class Shape with some sub-class ( ShapeRectangle, ShapeTriangle, etc ). In each sub-class, I got an outputShape method: ...
0
votes
2answers
35 views

String of Digits to ByteArrayOutputStream

in the following function, I have some trouble with an Array out of Bounds problem. It should convert a String of Digits into a BCD Format like this: "12345" -> 0x01 0x23 0x45 . The length of the ...
0
votes
5answers
70 views

How can I transform a List of List (multidimensional List) to an Array of Array(multidimensional Array)?

I have written this code, but at run time I have this error: [Ljava.lang.Object; cannot be cast to [[Ljava.lang.String; please help me, thanks!!! public java.util.List<String> ...
1
vote
4answers
64 views

How to add two arrays in Java in parallel manner?

For example, there are two huge (length 2-3 million) of the array float [] or double []. Need them very quickly add up. How to do it? Are there any libraries for this?
0
votes
4answers
80 views

Moving every element down one in an array (Java)

I've had a decent search and am unable to find working code that moves down an array. What I am hoping to do, is to store the value in the last position in the array, replace the last position and ...
-2
votes
4answers
82 views

Array of arraylists

im having trouble making an array of arraylists, heres's the code : 'ArrayList<Integer>[] solucao= new ArrayList[6];' and using this code below: solucao[0].add(1); ...
2
votes
1answer
27 views

Trying to assign card pictures, but it gives me wrong cards

I have this method: I am trying to assign picture of a card into their iconCards[][] profiles. Pictures are located in images/ folder as e.g. images/AS.gif (Ace of Spades), images/AD.gif (Ace of ...
1
vote
4answers
82 views

Is it possible to search through an array and return the index of the value

I am writing a simple Java program that basically stores an array of artists that have been in the charts previously; this is my code so far for the program package searching; import java.util.*; ...
0
votes
4answers
73 views

Turning a string into multiple arrays?

I'm a student who is learning java (just started this year. I just graduated so I can't ask my high school teacher for help, either), and I need some help on how to turn a string into multiple ...
8
votes
3answers
168 views

How can I put a Java array inside itself?

I'm attemping to create a Java object array and place the array inside itself at its second index (in order to represent a self-similar fractal with the array), but when I try to access ...
0
votes
1answer
54 views

How to parse a text file and create a database record from it

I'm trying to basically make a simple Test Generator. I want a button to parse a text file and add the records to my database. The questions and answers are in a text file. I have been searching the ...
1
vote
4answers
60 views

array ouput not correct

i am using 2 classes and a bunch of methods to store something in an array then writing it to a file. After i write something to a file, instead of being of the var double, this is my code: public ...
0
votes
2answers
62 views

Storing from one class to another in an array [closed]

I have to make a program which uses a different class for each part. For the first class: Quest1, I calculated the rate of growth in a population. Second class: Quest2, i have to store the growth into ...
-7
votes
0answers
59 views

sorting an array of type String alphabetically? [closed]

hi all i have problem with my method and i have practical exam tmr here is my problem i write this method to sort an array alphabetically and its only problem when i want to sort some names like ...
-3
votes
5answers
77 views

“Array Index Out of Bounds Exception 6” [closed]

This code works, but there's one thing. It compiled without errors, but after I tried to run it, it showed me an exception: Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 6 at ...
2
votes
3answers
106 views

Comparing an array to its mirror

Okay so I have a method that needs to take in an array full of ints, then check it against it's mirror to see what the largest mirror is that it matches to. So for example I have array [7, 1, 2, 9, 7, ...
0
votes
3answers
110 views

Finding the column total in an array

I have an 1-dimensional array with random elements, got through a m*n grid. I want to find out the row total and column total, present in it. Here is how the 1 dimensional array is: ...
0
votes
1answer
71 views

Historical Arrays

I've been approached with a task that requires "historical" array references. Not sure if this has a correct name or not. Here's a quick concept in visual form. [NC] == No change to array value (v1) ...
0
votes
1answer
34 views

Creating graphics objects that never overlap java

I'm making a small balloon game in java and trying to write my code, so that when I create new 'balloon' objects they don't overlap on the screen. The code I have so far is: public void newGame(){ ...
0
votes
3answers
58 views

Storing in Array from methods

im trying to a double in an array. The question is that i have to store the results from the user input in the array. For example, i ask the user for the initial population, first day and increase ...
-2
votes
1answer
64 views

Array in java is getting overwritten when adding value

I am struggling with this problem for a couple of hours now... I have an observer class that adds values to an array from an observable class. Everytime the observable class notifies my observer ...
-1
votes
0answers
61 views

Adding value to array overwrites whole array? Java

I am struggling with this problem for a couple of hours now... I have an observer class that adds values to an array from an observable class. Everytime the observable class notifies my observer ...
-4
votes
2answers
59 views

Sorting String Array by Last Name from a File [closed]

I have a .txt file which contains pairs FirstName LastName, like this: Sam Foster Jack White John Abner Mike Briggs Sarah Mills (No bullets, of course) The delimiter is space. Task is to sort ...
0
votes
5answers
81 views

Access to array from other class

static LifeInsurance[] LIArray = new LifeInsurance[20]; public LifeInsurance ( float dMonth, int startD,int startM,int startY,int label){ LifeInsurance.LIArray[LifeInsurance.counterLI] = this; ...
-4
votes
0answers
25 views

BufferedReader, read file and assigning to textfields [closed]

im having an issue trying to get this loop to iterate correctly, my program keeps crashing giving and ArrayIdexOutOfBounds Exection: 9. What i have is 9 textfields stored in an array that are ...
0
votes
1answer
67 views

Populate java.awt.list from String Array

I am trying to populate my java awt list from a string array. The string array gets the values from a .csv file. (Timezones) e.g Australia,Melbourne Australia,Sydney Europe,London Note: There are ...
-1
votes
5answers
58 views

In Java, how do I initialize an array of strings? [duplicate]

What I want to do is initialize an array of strings and then fill each space with a different string, like so: int year = 1995; //the current year i'm working with String[] Year; ...
0
votes
1answer
27 views

Append text when mousePressed() is false

I want to make the text show on screen when mousePressed() is false every 3 seconds, I set a boolean "whether" in mousePressed() function and when it quals false I get strings from a text file. But it ...
3
votes
2answers
67 views

How to create ListView from an Object with multiple arrays

I am lost again. My object is as follows: public class LogInfo implements Serializable{ public ArrayList<Point[][]> strokes; public LinkedList<byte[]> codes; public int[] times; ... } ...
1
vote
5answers
96 views

Taking integer arrays

boolean isValidIndex (int [] x, int y) { if((y>=0) && (y<x.length)) { return true; } else { return false; } } Write a method called isValidIndex() that ...
-2
votes
4answers
67 views

java.util.Arrays.equals() with limited length

I need to compare elements of two byte[] arrays but only up to fixed length. For whole arrays I use java.util.Arrays.equals(). Of course I can copy sub-ranges (Arrays.copyOf()) but I'd like not to do ...
-5
votes
1answer
39 views

Write a method called replace3sWith4s() that takes an integer array, and changes any element that has the value 3 to instead have the value 4 [closed]

Write a method called replace3sWith4s() that takes an integer array, and changes any element that has the value 3 to instead have the value 4. need to include a for loop aswell void replace3sWith4s ...
2
votes
1answer
35 views

How to use JCalendar to select an element of my array?

I have a 3D array that contains 38 years, 12 months, and 31 entries for each month (regardless of how many days in that month). Like so: array[38][12][31]. I also have a JCalendar that is doing ...
0
votes
1answer
69 views

Collision detection and reaction java

I am writing a small game where 20 balloons are created on screen and mouse released on them expands them. They are supposed to 'pop' when one balloon touches another, but at present when I click a ...
0
votes
3answers
72 views

How to add or remove a value on an array?

1st quesiton : How do i remove from an array ? Basically the parameter will specify which index will be removed. I will have to update this in a new array and return it. int[] removeFromArray(int[] ...
0
votes
3answers
24 views

how to create an anonymous int array for the purpose of passing as a parameter

I need to create anonymous int array to be passed to a method. I don't want to declare a variable and then pass the variable because it makes code look crowded. This is what we can do for Integer ...

1 2 3 4 5 139