I am using Jsoup 1.9. I want to upload a file to a PHP server. It must show a progress bar.
Document document = Jsoup.connect(url)
.data("file", file.getName(), new FileInputStream(file))
.post();
I am using Jsoup 1.9. I want to upload a file to a PHP server. It must show a progress bar.
Document document = Jsoup.connect(url)
.data("file", file.getName(), new FileInputStream(file))
.post();