Posts by Michael Rodrigues • 11 points
3 posts
-
0
votes1
answer27
viewsA: How to compare 2 different Hashmaps in Java
I found an answer that solved my problem and I’ll leave it on record here in case someone is having the same problem. countDuplicateMapArray.entrySet().stream() .allMatch(e ->…
-
0
votes1
answer27
viewsQ: How to compare 2 different Hashmaps in Java
I have 2 Strings that convert to Hashmaps, the first is an input that the user gives to the application. The second is an Array that contains a lot of words. I need to compare both Hashmaps to see…
-
1
votes1
answer44
viewsQ: Error converting a data from one class to another
I’m using JSF in a project, I have a working "W-A" screen that displays the "T-A" table data in a grid. In this grid, each row has a button that forwards to a new screen "W-B" where will be…