java - I want to copy an excel file from one location to other URL server location -
I want to copy / move Excel from a local machine / path to the server location. Server location, we manually upload the excel file, but I want to do it autmatically using Java files. Can I do this, if so, please give me a suggestion on this.
Thank you in advance VSRK
If you upload it through a web form If so, you can use Apache HTTP Client to create a request sent to the server in the program and upload the file. Before you upload, you will need any authentication that the server will store any cookies sent to you, and any post-authentication navigation for the web page will be required. You will need to fix the upload request exactly as the web browser sends it, the parameters and all.
Comments
Post a Comment