Posts by Lucas Moraes de Souza • 37 points
4 posts
-
1
votes2
answers270
viewsQ: Send email by java
I am trying to send mail by java but am having an error with smtp. My code: try { SimpleEmail mail = new SimpleEmail(); mail.setFrom("[email protected]", "Teste"); mail.setSubject("E-mail…
javaasked Lucas Moraes de Souza 37 -
0
votes1
answer808
viewsQ: Send Image with Socket Java
I need to make a program able to send an image to a server (my pc for testing) when pressing a button, I already know how to select the file, but I can’t find/understand anything on the internet to…
-
-2
votes1
answer331
viewsQ: Robot Class with Variable
I have a code and need to write the value of a variable through the robot class, for example: int camera=2 Robot robot = new Robot(); robot.keyPress(KeyEvent.VK_C); robot.keyPress(KeyEvent.VK_A);…
javaasked Lucas Moraes de Souza 37 -
1
votes2
answers1887
viewsQ: How do I save an image to a newly created folder by my code?
I am having problems at the time of storing my photo, I create a folder using mkdir and through a string, I take the contents of an Edittext from my application, to give the name of the folder.…