I'm working on FTP-Client tool for connection to ftp.
At this time, I need to upload to ftp via this tool. According to this post and first answer, it's possible to use FileInputStream
for saving the files. But i want to store file as a byte array, not FileInputStream
.
Is there any way to do that?