Posts by JULIANO LANDIM • 24 points
5 posts
-
-1
votes1
answer52
viewsA: How to create a function to display the largest numbers of a B tree in Java?
Hello, I don’t know if I understand what you need to do, but if you need to get the most value from an integer array just use the stream api. int[] nros =…
javaanswered JULIANO LANDIM 24 -
0
votes1
answer527
viewsA: How to popular a list to DTO more simply
You can try using Dozer! Download the dependency if your project is in Maven. <dependency> <groupId>net.sf.dozer</groupId> <artifactId>dozer</artifactId>…
-
0
votes1
answer26
viewsA: How do I retrieve information from a Java window in a Combobox from another window?
Have you tried something like, put a setListaFornecedores in Products? public class CadastroProduto extends javax.swing.JFrame { private LinkedList<Produto> listaProdutos; private…
-
1
votes2
answers63
viewsA: For & If exercise (doubt about error obtained)
Hello, you are not passing the parameter value to call the function in console.log, you are calling console.log(alturaArvoreUtopica); instead of console.log(alturaArvoreUtopica(4)); Moreover has…
javascriptanswered JULIANO LANDIM 24 -
-1
votes3
answers3382
viewsA: Convert DTO to Entity Java
Use the Dozer <dependency> <groupId>net.sf.dozer</groupId> <artifactId>dozer</artifactId> <version>5.4.0</version> </dependency> Mapper mapper = new…