Posts by Pablo Almeida • 5,060 points
155 posts
-
1
votes2
answers89
viewsA: Methods Running in Parallel
Listener is usually a type of interface implemented by object classes that respond to certain actions. If you have an Onfilecontentchangedlistener interface, for example, it will declare a method…
javaanswered Pablo Almeida 5,060 -
0
votes2
answers346
viewsA: Dynamic form statement in JAVA
Every Java List has a method called add() that serves to add new elements. You do not need to declare how many they will be, since it grows dynamically. I didn’t understand exactly how your data is…
-
0
votes2
answers4017
viewsA: Load Javascript function when opening the page
Since you are using Jquery and not pure Javascript, try $(document).ready(suaFunção)
-
2
votes1
answer1341
viewsA: How to remove the edges of a Jframe?
Window borders are provided by the operating system (provided the window is marked as decorated). Window decoration includes the title bar, so you can’t have one thing without the other. There is…
-
1
votes1
answer217
viewsA: Receiving Information from a Website
The first thing you need is to download the page. That’s not hard, so I’ll focus my answer on the second part. You need to take this element that you want through the DOM parser of the language…