Posts by Gustavo de Souza • 46 points
3 posts
-
2
votes2
answers1025
viewsA: How to download a compressed file from a URL and save to disk?
Roger, if Voce is already downloading the zipped file Voce does not need to use the Zipentry class, just download the file and save it to disk. Follow an example of file download and save code on…
-
1
votes2
answers74
viewsA: Variables and if flow control structure in Java
The problem the compiler is showing in the terminal 02IfsTest.java:47: error: variable maior Might not have been initialized System.out.println("The highest value Ú " + the highest value + " the…
javaanswered Gustavo de Souza 46 -
0
votes1
answer64
viewsA: Webservice Rest
Add @Consumes (Mediatype.MULTIPART_FORM_DATA), so that the jersey knows that it can receive information in the form format. Take a look at this topic Multiple-types-of-data-file-and-json…