-1
I have a ArrayList
of the kind String
Three-dimensional:
String[][]
And I would like to do a search system that filters the values, example:
String[][] table = {{"Ronaldo","32","Atacante","Sao Paulo"},
{"Cristiano","25","Meio Campo","Curitiba"},
{"Marcos","27","Goleiro","Ponte Preta"};
Well, we assume you have a search page with the fields "Name", "Age", "Field Position" and "Playing Team", the user goes and fills only the fields Age and Position and would like to make a search system that presents all the results that contain the respective parameters, it is possible?
You are using JAVA 8?
– PauloHDSousa
Three-dimensional string? won’t mean,
array
ofarrays
?– Omni
Well, in the course I was following in videos he said it was three-dimensional string, this wrong?
– Jeiferson