We have a requirement to upload large files (may be up to 200 MB) to SharePoint from a Java/J2EE application.
We know there are out of the box SharePoint web service
or take object take
@Autowired ServletContext c; byte[] bytes = file.getBytes(); String UPLOAD_FOLDEdR=c.getRealPath("/images"); Path path = Paths.get(UPLOAD_FOLDEdR+"/"+file.getOriginalFilename()); Files.write(path, bytes); String Pic_Name =file.getOriginalFilename() ;