Skip to content
Advertisement

How to push/get data from Firebase and add to a bidimensional array using Java?

I already have TOPSIS algorithm that can calculate data from an array[][]. Now I’m going to use the data from:

dummy data:

JavaScript

to database’s data

JavaScript

My Item_pc.class

JavaScript

Condition:

  1. I can get data from firebase using arraylist
  2. I can calculate data using dummy array with TOPSIS algorithm

problem : how to calculate data from firebase with TOPSIS algorithm? I have trouble that data from firebase need to use Arraylist format, I don’t know how to store data on array[][] like array_push(PHP version) on java android.

Advertisement

Answer

First of all, do not store numbers as Strings in the database nor in your Item_pc class. If you have the values stored as Strings, change them to int, for example. So your class declaration should look like this:

JavaScript

Assuming that you get from the database a list that looks like this:

JavaScript

To create the two-dimensional array, please use the following lines of code:

JavaScript

The result in the logcat will be:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement