Resizable-array implementation of the List interface in Java.
0
votes
3answers
23 views
treemap vs arraylist - perfomance & resources while iterating/adding/editing values
Talking about performance and resources.
Which one is faster and needs less resources when adding and editing values, ArrayList or TreeMap?
Or is there any type of data that can beat these two? (it ...
-2
votes
2answers
16 views
How to get my activity page to load up Imagebuttons depending on the values of another activity?
So I basically have 3 activity pages right now
1st: only a start button
2nd: a bunch of question using RadioGroup, spinners, and text values
3rd: I want this page to present Imagebuttons I already ...
1
vote
2answers
47 views
Passing ArrayList reference to another class
I understood that Objects are passed as references in Java.
So, Is it correct to do like this? ArrayList is created in parent procedure, then passed to procedure in another class for creating new set ...
-1
votes
3answers
69 views
How to create multidimentional Arraylists
I'm considerably new to arraylists and structures that involve multiple dimensions, therefor I would be really greatful if somebody could help me out on this or give me a hint on how to achieve this.
...
0
votes
1answer
25 views
Java - Delaying an event without a Thread/Timer
In the later levels of my game alot of zombies are spawned at the same time (up to 200) so the fps will be lowered because of all the zombies on screen, therefor I want to make it so that one zombie ...
0
votes
6answers
53 views
ArrayList Java Addition
Please help me to why am getting strange output for this Below Code.....
why am getting null for the getName().
Output :
List Check :null:1
public class ListTest
{
public static void main(String ...
0
votes
3answers
49 views
Insert Values from string[] arrays to an ArrayList of records
I will add the values in the String[] in to the Arraylist. But, I want to access those string values from the ArrayList.
I tried this way.
private void Form1_Load()
{
fr = new string[5] { "1", ...
3
votes
4answers
51 views
convert listbox items to array integers C#
Having trouble adding integers to the item array of a list box. Cannot seem to convert the listbox to integer. Any help is appreciated, thanks.
int[] ratingArray = new int[numberRatingsInt];
for (int ...
0
votes
0answers
11 views
checking for repeated dates in an Array list with Joda Drools
I am looking to have a rule that will create an array list of "People" and identify if there is any with the same birthday.
I should be able to perform this however I am recovering from a weeks ...
1
vote
2answers
78 views
Java arraylist of threads
I have an array of n threads, each one holds a number of 1 to 100.
For each iteration all of the threads needs to check their neighbors.
For thread i
IF thread[i].number > thread[i+1].number ...
0
votes
2answers
59 views
Lists<List<Double>>adding to HashMap
So, after request of compiling code, here it is. And the problem is that after adding second Hash element Called "B", the output messes up.
import java.util.ArrayList;
import java.util.HashMap;
...
0
votes
2answers
36 views
Adding ArrayList to TreeMap within a while cycle
I'm retrieving data from a table in a database and add the whole row to a TreeMap.
I'm using the following code:
ArrayList<String> listaValores = new ArrayList();
TreeMap<Integer, ...
2
votes
5answers
67 views
Add additional info to arraylist
What is the best way to store one single additional attribute at an arraylist?
Let's say I pass an ArrayList of Objects to a method and get an ArrayList back with an additional flag.
...
0
votes
2answers
43 views
Updating an double everytime a Object is added to a ArrayList
In my game I want all the zombies to have a random color. I have already figured out how to change the color of the zombies but the problem is that I wan't all of them to have different colors but ...
-9
votes
2answers
58 views
Need help finding minimum x and y values in an ArrayList of Points -JAVA [closed]
*Using Java
* I have an array list of Points called myPoints ==> "ArrayList myPoints"
-This array list has x and y coordinates and I need to write some code to produce the minimum and maximum x and ...
1
vote
3answers
61 views
java - Convert String ArrayList to String Array with bigger size
I am trying to convert Array list to String array but getting an exception. Can somebody please help me.
Size of ArrayList: 1
Size of String Array: 2
I am using the following code:
String[] ...
0
votes
4answers
48 views
removing element from arraylist depending on a custom object property
I have an ArrayList with custom objects. What i want is to remove the duplicates from the array depending on the name property of the custom object. I have tried to accomplish this with Set person = ...
0
votes
5answers
71 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> ...
0
votes
0answers
20 views
List<Arraylist<T>>> changes multiple entrys
I have a List<ArrayList <T>> called arraylist and for example I want to change just
arraylist.get(4).get(6)
by
arraylist.get(4).get(6).setName(),
it also changes
...
-2
votes
4answers
83 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);
...
0
votes
1answer
53 views
How to define a generic sort class
First off let me say that this is related to homework for a class I'm taking on the side. I actually already have the answer for the homework but I decided I wanted to go a step further to help myself ...
0
votes
4answers
55 views
Why doesn't ArrayList.contains(Object.class) work for finding instances types?
Say I have an ArrayList which is populated with objects of different types...
ArrayList<Fruit> shelf = new ArrayList<Fruit>();
Apple apple = new Apple();
Orange orange = new Orange();
...
-5
votes
1answer
51 views
I keep getting a nullpointerexception, but I am not sure why. [closed]
So I have this method which compiles fine.
public void occupySpace(int newSpace){
spaceOn = newSpace;
Spaces ns = nB.getSpecificSpace(spaceOn);
ns.occupy(symbol);
}
However, I get a ...
-1
votes
1answer
31 views
Create an ArrayList then Search the List and allow the user to change part of the list or not
Our assignment is to create an to-do list using Arraylist coding.
Then change the code so that it ask the user to input a string after the list has been inputted, it will tell the user that if that ...
0
votes
3answers
41 views
Error ArrayList when get null string from EditText
When edittext is null and press add button my code crash...I try to copy integers from edittext to an Array...How i can fix it this error? i have set edittext
android:inputType="numberDecimal"
...
0
votes
3answers
44 views
Having trouble with adding an ArrayList to an ArrayList of ArrayLists
public class Tabel {
private static int dimension;
private ArrayList<ArrayList<Character>> tabel;
public Tabel(int dimension) {
Tabel.dimension = dimension;
...
0
votes
2answers
42 views
Invert Elements in ArrayList<Integer> Java
Ok so the point of this method is the invert the elements in an ArrayList of type . So if I have the elements:
5
6
7
8
9
10
once I call the method, the position of the elements should be Inverted as ...
2
votes
1answer
64 views
Java Object reference
This is regarding the usage of ArrayList returned by another class instance variable.
Class A {
//assigned list of string to it.
private List < String > newAl;
//returns the list
...
0
votes
2answers
33 views
Using an Integer ArrayList in Android
I am needing help creating an ArrayList and adding some Integers to them. Essentially, I have a card game that pulls the card and then saves the ID (BCID). I want to add this pulled ID to an ...
-1
votes
1answer
43 views
Accessing arraylist from another class continuously [closed]
Lets say there are two classes A and B.
In class A, there is an arraylist which holds GeoPoints and the content of this arraylist is changing all the time.
For example:
at t=0 ArrayList has ...
4
votes
2answers
71 views
HashSet of Array of int HashSet<int[]> in java
I'm trying to create a set of arrays of ints, the thing is that if I try to do:
HashSet<int[]> s = new HashSet<int[]>();
int a1[] = {1,2,3};
int a2[] = {1,2,3};
s.add(a1);
s.add(a2)
...
-2
votes
3answers
67 views
Arraylist in a Arraylist
How is it possible to store data (bytes) input like this:
input data (bytes) : 01 23 45 and 67 89 10
At the end Arraylist row : [[01,23,45],[67,89,10]]
// declaration
List<List<Byte>> ...
0
votes
2answers
30 views
Serialize arraylist of Bitmaps
I have a CITEM class:
public class CITEM {
public Bitmap BMP;
public String DESC;
}
In another class I have an array defined as follows:
ArrayList<CITEM> array;
I need to store the ...
0
votes
3answers
49 views
Converting a subList of an ArrayList to an ArrayList
Im using an ArrayList and im trying to copy a part of it to another ArrayList therefore im using:
sibling.keys = (ArrayList<Integer>) keys.subList(mid, this.num);
Where "sibling.keys" is the ...
1
vote
1answer
80 views
Java Stack Overflow when reading Object
I'm trying to load an object into Java that I had saved from a program I had made.
When loading it in, Java threw a Stack Overflow Error.
The object I'm loading in had about a thousand entry object ...
2
votes
1answer
53 views
Not removing particular item in Arraylist
I have a EditText with ImageView Plus .
On click of ImageView Plus I'm inflating new layout with EditText and ImageView Minus.
Now, On Click of ImageView Minus. I want to remove the inflated ...
0
votes
1answer
38 views
Load selected fields from ArrayList to ListView.
I would like to load only selected fields from my ArrayList to ListView.
I couldn't find that example so I ask.
I have an ArrayList of a structure as follows:
ArrayList<LogInfo> logInfoArray
...
0
votes
2answers
32 views
Runtime error Java
I am a beginner in Java and I have a run time error question. I have answered it correctly, however I do not completely understand the concept behind the answer. Could someone please explain why B is ...
-1
votes
0answers
70 views
Difficulty with ArrayLists in Java [closed]
private ArrayList<Shoot> bullets = new ArrayList<>();
public void render(Graphics g) {
for (int i = 0; i < bullets.size(); i++) {
Shoot shoot = ...
-6
votes
1answer
76 views
Can I add int elements to an ArrayList<Integer>? [closed]
I'm new in Java and here also. I want to add an element of type int to an ArrayList<Integer>. Is there any way to do that?
0
votes
4answers
60 views
Avoid Duplicate Records - HashSet
I'm trying to multiple objetcs of DTO into an ArrayList through a for Loop. Once all objects are added, for avoiding duplicates I'm converting ArrayList into HashSet to avoid duplicate records.
Code ...
-5
votes
1answer
95 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 ...
2
votes
1answer
24 views
How to remove a string from an arraylist randomly
So what this program is supposed to do is the user inputs a name into a text box and then presses a button to add it into an array which is displayed onto a text area. The thing is that I can't figure ...
1
vote
2answers
57 views
How to sort ArrayList based on a variables value [duplicate]
I have one ArrayList<Users> users_list; and in users i have name, surname, age etc. I want to implement an sorting algorithm that will sort my arraylist based on users age. I searched a lot but ...
-5
votes
1answer
36 views
Finding max/min of ArrayList Java
Hey I need help finding max and minimum of my arrayList. How do i go about doing so?
No matter what code I try it doesn't work out for me.
I am lost and this website is denying me any ability to ...
-8
votes
3answers
39 views
How to rewrite ArrayList in opposite direction [duplicate]
I have a ArrayList and I need to rewrite it in the opposite direction. How to do it?
List<Posts> viewList = new ArrayList<Posts>();
viewList = viewLogic.getPostsList(username);
0
votes
0answers
19 views
ClassCastException in Parcelable, but perhaps deeper problems?
I have a field that looks like this in a class called Game
private ArrayList<Question>[] questions;
I am writing it in like this
public void writeToParcel(Parcel parcel, int flags){
...
...
-1
votes
1answer
118 views
Method what returns the string of ArrayList [closed]
So I have:
private static ArrayList<AbstractAnalyser> analysers = new ArrayList<>();
public static String getAnalyser(String analyser){
if(analysers.contains(analyser)){
return ...
0
votes
2answers
64 views
Uses unchecked or unsafe operations
I keep getting an error that says:
Note: ABag.java uses unchecked or unsafe operations.
I googled it and found this post, and made the changes that I thought would remove the error but I continue to ...
0
votes
2answers
48 views
Java unchecked warnings add arraylist
Here is the main program
public class MainPerson {
public MainPerson(){}
public static void StartMainPerson()
{
int i = 1;
ArrayList<SortedPair> PersonList;
...




