sending a file using DataOutputStream in java
I am trying to build a client that sends the file size and contents to server. I am trying to use DataOutputStream. I am assuming that I need to open the file and and get size of file and read the contents and send it. But I am not sure how to implement those because I am really new to java... Can anyone help me about this? Thank you! It's quite simple, but the code is a bit long to write it all and sounds like homework. I can give you some indications. Just open the file, use the long length() method of the class File to get the size, and the writeLong(long) method of DataOutputStream to send