Posts by Higor • 175 points
8 posts
-
1
votes1
answer95
viewsQ: Jsoup not returning any value
I have a problem with blibioteca Jsoup, that when I try to make the connection to a certain page, it simply does not return me any value from the connection. public static void main(String[] args) {…
-
1
votes0
answers252
views -
0
votes1
answer2602
viewsQ: Move File in Java
How do I manage to change the directory of a java file? I’ve done a lot of research and I couldn’t find a functional way to move files to another java directory.
-
3
votes1
answer178
viewsQ: Slide Show with Divs
I need to do like a slide show only with news, more specifically a slide show of Divs. And I still haven’t found a way to do that! Could someone help me? Hug
-
3
votes1
answer1450
viewsQ: Stopwatch - Timer
I made a chronometer (better to say: a timer) that should be executed when a certain button is clicked. I managed to make the timer, but I can’t close it. After calling it he is timing "forever" rs.…
-
1
votes1
answer477
viewsQ: Pause program with Timer
I need to use it to wait 2 minutes before executing a method. I have researched and can’t find anything clear enough to help me. I’ve used the Thread.sleep() the more he locks the thread all of it,…
-
1
votes0
answers48
viewsQ: Give more than one event to a window
So I created a java window, but I need to assign a different event to it depending on the occasion it is called. And the problem is, I can’t do it. There’s a way to do it? Window:…
-
5
votes1
answer149
viewsQ: Checking string inside string
How to know if a specific text is contained in a string? example: String str = " Hello Word"; How do I check if the word "Hello" is contained in that string "str". And if the check is true, how do…