Tagged Questions
-2
votes
1answer
61 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
56 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
55 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
77 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
19 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
60 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
23 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
65 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
94 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
63 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
38 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 ...
1
vote
1answer
30 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
63 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
71 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 ...
0
votes
2answers
100 views
Why aren't my variables being altered in my loops?
I've got a method that is meant to work out the group of elements of a 3D array with the highest combined value. I've got 3 nested loops that I'm using to go through my array, and as certain ...
0
votes
3answers
52 views
Array returning memory allocation instead of value in Java
Consider a simple case like this one :
public static void array()
{
String myString = "STACKOVERFLOW";
int [] checkVal = new int[myString.length()];
for(int i=0; ...
0
votes
2answers
30 views
Position and orientation of robot in a grid
I want to make a 10x10 grid and put the robot in position (10,1) (bottom left). I want this robot to be able to move forward, turn left/right and to pick up/put objects in a grid. When put in any ...
0
votes
2answers
40 views
I'm attempting to fill an array with the 20 most-recent user inputs. When I print the array the wrong ints are ouput
I am working on a simple game for an assignment, which is complete aside from this part that I cannot seem to get right. The game must fill an array with the 20 most recent moves, and print those ...
-2
votes
1answer
41 views
How to create a sub array of objects from a given array? [duplicate]
I have an array with 10 objects.
Then i created a sub array of the above array with 2 objects.
I want java code to create another sub array with the remaining 8 objects.
For eg:
int[] ...
1
vote
2answers
48 views
Converting a lowercase char in a char array to an uppercase char (java)
Hello I am trying to write a little segment of code that checks if each char in a char array is lower case or uppercase. Right now it uses the char's ASCII number to check. After it checks it should ...
-6
votes
2answers
52 views
How to create a sub array of objects in java?
I have one object array with 100 objects.
I created one sub of the above mentioned array with 10 objects.
Now i want the remaining 90 objects as a new array.
What is the java code to do that?
1
vote
3answers
63 views
Adding objects to an array from an implemented class
Good morning, my apologies if this question is complex/confusing. I am in an intro java course and I am having some difficulties with one of my assignments! You guys on here seem to have an answer for ...
2
votes
3answers
70 views
How to convert hashmap to Array of entries [duplicate]
I have a map
private HashMap<Character, Integer> map;
I want to convert it to array but when I do that/I get this:
Entry<Character, Integer> t = map.entrySet().toArray();
**Type ...
-3
votes
3answers
42 views
Is that possible to sort HashMap by Arrays.sort [closed]
I would like to sort an array using Arrays.sort. I know that it should be done by Collections.sort but the teacher wanted use of Arrays.sort is that possible? I would like to pass comparator.
0
votes
2answers
51 views
Java Generic Classes Arrays
I was reading this answer, and now got confused about the normal array declaration and this piece of code used to create arrays for generic classes:
Gen<?> gens[] = new Gen<?>[10];
What ...
0
votes
1answer
39 views
How to sort a large text file's data into a multi-dimensional array?
I have a very large data file. It starts off with a big paragraph that I want to ignore or remove from the equation, then it has a year e.g. 1974, then 6 spaces, then a number to represent a month, ...
-5
votes
1answer
84 views
How to get highest/lowest integer in a ArrayList<String> ? [closed]
Basically, Iv'e loaded a document into Java, put all of it into a string arraylist, now I want it to find the highest registered integer inside of it, and the lowest registered integer. Iv'e been ...
-4
votes
0answers
49 views
converting array of int into a date string in java [closed]
I have created an array that gets 3 ints for example:(1,1,2000)
How do I convert this array that called Date into a string and eventually get one of the ints
like extracting an int from a ...
0
votes
1answer
46 views
Adding list to a list of lists doesn't work
I can not get this code to work.
The .txt file that it is reading from is here:
urls.txt
The problem with this code is that it does not at all add any lines.
Whenever i try to get anything at all ...
0
votes
1answer
31 views
How to map an array index to a certain date?
I want to map an index from my 3D array to a date. I have an array (sortedData[34][12][31]) and I would like to have it so that if a date is selected from JCalendar it corresponds to the correct index ...
2
votes
1answer
37 views
Passing a class type to a method, then casting to that type?
I'm still pretty new to Java, so I might be missing something obvious here.
I have the following code that I use to pick class types from a list of all my entities:
public Array<?> ...
0
votes
1answer
35 views
Odd Java String[] error
I have this line of code:
String[] projection = {MediaStore.Audio.Media._ID, MediaStore.Audio.Media.ARTIST,
MediaStore.Audio.Media.TITLE, MediaStore.Audio.Media.DATA,
...
6
votes
3answers
64 views
Enhanced For Loop Exception
Created the below code whilst playing with loops. The code below stores the Fibonacci values into an array and then prints them using for loops.
int [] numbers;
numbers = new int[25];
...
0
votes
4answers
49 views
Taking the average of an Array
I'm trying to put together a java program to do the following:
Prompt for and read in a number of integers to read
Create an array that can hold that many integers
Use a loop to read in integer ...
1
vote
3answers
69 views
How to get array base type in postgres via jdbc
How to get base type / dimension of an array column in Postgres by Java?
I have a tables that contain arrays like int[][] and text[].
When I traverse the metadata from JDBC I can only get type as ...
0
votes
3answers
41 views
Moving from buffer to an array for manipulation in Java
I am making a program to take data from a .txt document, I have used the BufferedReader method which goes through the document. It then prints the the documents contents into the console. I cannot ...
1
vote
2answers
110 views
Java 6 Sort array
I have to design a interface method which accepts an primitive [] array and perform a sort and return back an primitive [] array for a LOW LATENCY (high performance) requirement and will be called by ...
-5
votes
2answers
42 views
can't point to the first object of my array
i've this problem, i'm learning java and trying to do one of my exercise i can't point to the first object of my created array.
here the code:
public class prova {
public static void ...
0
votes
2answers
32 views
Java ASCII control codes to literal values
I might be somewhat stupid here, but I can't seem to think of a straightforward solution to this problem.
I've currently got an int[] that contains ASCII character codes, however, with the ASCII ...
1
vote
2answers
53 views
Attempting to create chance calculator
I am relatively new to Java and wanted to try and make a code that would randomly generate 2 numbers a set amount of times, and it would track how many times the 2 numbers are the same. Then after X ...
-1
votes
1answer
18 views
How to incorporate Quick Sort method in GUI?
I have my lovely little quick sort method ready to go, but I am unsure how to incorporate into a GUI (this will be my first GUI) and GUI do not like public statics and what-not...
So any ...
0
votes
6answers
73 views
subtract integer from a string of integers
Suppose I have a string array as follows:
String[] str = {"2","4","5"};
Now I want to subtract 1 from each of its elements, ie, I want the string to be like this now:
str = {"1","3","4"};
...
0
votes
2answers
36 views
How to sort a large text file into a multi-dimensional array?
I'm trying to read a large text file and sort it into a 3D array using scanner() but I don't think the array is being populated, and I keep getting the error java.lang.NullPointerException, but I ...
0
votes
0answers
20 views
How i get integers from an edittext and store to array and shareprefereces?
How i get integers from an edittext and store to array and shareprefereces?
For example user insert 12 34 56 7 90 35 678 separate with space...
public static ArrayList<Integer> pulseslist = new ...
0
votes
5answers
84 views
How do I pass an array of strings into another method?
My code is like this:
public class Test() {
String [] ArrayA = new String [5]
ArrayA[0] = "Testing";
public void Method1 () {
System.out.println(Here's where I need ...
-2
votes
3answers
44 views
How to get the largest value from an array that contains two class files
How do I make my program find and print out the most recent movie of the array?
this is the program:
public void start() {
// Step 1. Declare and construct an array of 19 Movie objects (call ...
0
votes
2answers
36 views
Multidimensional Array Computation
I'm trying to compute the largest product amongst four adjacent numbers (integers) in a 20x20 grid.
This is what I have so far...
/**
* The maxProduct method is used to compute the largest product ...
1
vote
4answers
78 views
How to delete duplicates?
I am having trouble removing duplicates from an array that I have populated with random integers. I have written a java class to generate the random numbers and in my main program I have called these ...

