Resizable-array implementation of the List interface in Java.

learn more… | top users | synonyms

0
votes
2answers
25 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
45 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
0answers
72 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
38 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
35 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
30 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 ...
0
votes
0answers
67 views

Difficulty with ArrayLists in Java

private ArrayList<Shoot> bullets = new ArrayList<>(); public void render(Graphics g) { for (int i = 0; i < bullets.size(); i++) { Shoot shoot = ...
-5
votes
1answer
73 views

Can I add int elements to an ArrayList<Integer>?

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
47 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
82 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
23 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
55 views

How to sort ArrayList based on a variables value

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
33 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
1answer
16 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
57 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
47 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; ...
1
vote
2answers
32 views

Android, SQLite: Inserting data in while clause is very slow

SOLUTION AT THE BOTTOM OF THE QUESTION I have a FTP Server with more than 3'000 pictures on it and I save the picture names to an ArrayList. After this I'd like to save them from arraylist to ...
0
votes
1answer
12 views

Deserialize JSON to Java Object containg Collection using Jackson

I am making a very simple test with Jackson. I have a class and use its object as parameter and return value of a Jersey method. The class is : import java.util.List; public class TestJsonArray { ...
0
votes
2answers
20 views

ConcurrentModificationException when reordering arralist elements in android

I want to move a particular element from its original position to 0th index.I tried the following private void reoderArrayList() { Intent mainIntent = new Intent(Intent.ACTION_MAIN, null); ...
-2
votes
3answers
54 views

Cannot figure out ClassNotFoundException error

Here is my code: Getters, Setters, and imports are excluded Part Class: public class Part{ private String name; private String id; private int quantity; private BigDecimal ...
2
votes
1answer
42 views

How to convert an arraylist to a multidimensional array

I have an ArrayList object which its values are arrays of Object. I want to convert it to an array. This is the summary of what i did: ArrayList result = new ArrayList(); Object[] row = new ...
3
votes
5answers
58 views

Why should I call ArrayList.ToArray?

The code base where I work has code similar to the following in a few places: Dim i As Integer Dim ints As New ArrayList ints.Add(1) '... lets say we add more Integers For each i in ...
0
votes
1answer
26 views

test and insert text in JLabel, the amount and duration of communication

i make a test to see if my phone number is one of the list after this i want to display the message in the gui screen label with this message "Connexion establed" if not print in this screen label ...
-1
votes
2answers
60 views

Create an n-gram list from an ArrayList

I'm trying to create an N-gram list from an ArrayList containing an amount of words. My current code looks like this: public void ngram(int n){ int i = 0; for(String a : arraylist){ ...
0
votes
1answer
44 views

Impossible to add digits to the ArrayList despite using appropriate method

I am currently implementing a binary calculator as a part of my course assignment for Java Programming. I have stumbled across one problem I don't understand. In the code outlined below, I wanted to ...
2
votes
1answer
16 views

Remote Content doesn't refresh

I got a bit of a Problem with my App, i use a .txt File for getting the right URL's to Display my Pictures that the App should show. Everything works fine. But if i change the Content of the Remote ...
-6
votes
3answers
71 views

A List of List and Object

I want a List of OtherObjects all belonging to certain Objects. Is it possible to create a List like so? List<Object, List<OtherObject>> Or should I create a new class and do? ...
-1
votes
2answers
35 views

ArrayList .add replicating the same recordset after rs.next()

I'm a bit new and am working on a project. I have an ArrayList where I call .add to add elements. My add is somehow adding the same record to all the elements in the array. Below are snippets of my ...
1
vote
1answer
24 views

How to transfer ArrayLists of Strings between two Android phones?

I am developing a trading card game app that allows PVP play. To populate the battlefield GridView of the opponent, I need the app to be able to receive several ArrayLists of Strings from the opposing ...
0
votes
2answers
48 views

foreach loop in android for breaking data

this is my SQLBlog class and getDataFunc is the function where i am getting result from database import android.content.ContentValues; import android.content.Context; import android.database.Cursor; ...
1
vote
3answers
33 views

Java reading serialized in objects from file into an arrayList

I'm attempting to read a file that contains serialized objects of type Contact into an ArrayList contactsCollection. The issue I'm having is that the objects Contact never get added into the ...
0
votes
0answers
7 views

how to store a list of items in Gel Script

I would like to create a process in Clarity 13.1 which sends an email to all managers belonging to different OBS units in IT Department containing the list of resources who did not complete their ...
-1
votes
3answers
45 views

How to create a regex who verify the existence of a number into an array in java

i want to verify if a number for example 701234567 is an element of my array in java. For this, my code search if my number who is begening with 7 and have 9 digits is a element of my array ...
0
votes
0answers
45 views

SimpleAdapter ArrayList, how do I get the exact id “ArrayList<Map<String, String>>”

There is a problem with catching the user's exact ID: ArrayList<Map<String, String>> usersListForAdapter = new ArrayList<Map<String,String>>(); // ...
1
vote
2answers
46 views

ArrayList sorting issue in Android

I've an ArrayList of objects. ArrayList<Item> blog_titles = new ArrayList<Item>(); I want to sort the ArrayList in the descending order of one of the datamembers which is a DateTime ...
0
votes
3answers
63 views

How to copy an ArrayList that cannot be influenced by the original ArrayList changes?

I've been using ArrayLists on a project of mine, and I need to create a default ArrayList so I can reset the original one whenever I want. So, I copy the original ArrayList to create the default one. ...
1
vote
4answers
48 views

Need clarification on addAll methods behaviour

Hi i am using addAll method of Collection framework. Please find below my code. It is working fine for code 1. For code 2 it is giving me compilation error. I dont know why it didnt give me error for ...
0
votes
1answer
50 views

Getting Values from a class & store them in an ArrayList

I have some images & sounds set in separate classes.I want to call them in my main activity. I want to put all three images from a1.setRightImage(R.drawable.play_blue_1); ...
-2
votes
1answer
72 views

How to implement 2D list?

I have a matrix having r rows and c columns. I have store the matrix in 2-D array. See figure below. I find minimum number in each row. if the minimum number lies in first Column I add the minimum ...
0
votes
1answer
53 views

Java ArrayList null pointer exception

EDIT I've cleaned up the .equals method for string equality and changed the ContactsCollection initialization to: public static ArrayList<Contact> contactList = new ArrayList<Contact>(); ...
2
votes
1answer
50 views

ArrayList.indexOf versus sequential searching of an array of objects

Does the JVM run through an array of Objects faster than an ArrayList of Objects? To elaborate, say I have two variables Object theObject = someObject; Object[] objArr; ArrayList objArrList; ...
0
votes
1answer
29 views

Java reading and writing ArrayList type Contact to GUI

EDIT I've made several corrections and am now able to compile. When attempting to add a contact to the file I receive a null pointer exception at line 13 of the ContactsCollection class: for (int i ...
0
votes
1answer
26 views

Get the right field from an abstract class hierarchy?

I have an Abstract class A public abstract class A{ private int x; public void doSomethingToX{...}; public int getX(){ return x; } I have 7 classes that extend A, each of the 7 ...
-2
votes
4answers
82 views

ArrayList: Exception in thread “main” java.lang.NullPointerException

I still have the problem when i try to add person. The code is suppose to detect invalid name and birthday, and would not to add this person into the personList. However, because i'm not able to get ...
-2
votes
1answer
41 views

Getting integers from text file and work on array list in java [closed]

I have text file which is contains:" I have 3 apples and 1 banana.All people have 4 cars at least." I want to read this .txt file and get integers from it.I will strore integer variables in ...
0
votes
2answers
56 views

IndexOutOfBoundsException when removing ArrayList element

I have this code right here (using lwjgl but that should be moot) to try and pause a game when pressing the esc key. I use an ArrayList with the keys to keep track of what is pressed and what isn't. ...
0
votes
0answers
71 views

Adding data to Java HashMap not working properly

I am trying to add data in my Map. Data: category1 subcategory1-1 a,b,c category1 subcategory1-2 1,2,3 category1 subcategory1-3 c,3 category2 subcategory2-1 c,3 category3 subcategory3-1 ...
-4
votes
2answers
71 views

Take values from ArrayList<HashMap<String, String>> [closed]

I have a problem about getting a value from my ArrayList<HashMap<String, String>>. My code is: ArrayList<HashMap<String, String>> myArrayList; and then: HashMap<String, ...

1 2 3 4 5 103