Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to share files between two Android phones using Socket programming. The problem is right now I have to hard code the file extension on the receiving end. Is there a way that I can automatically determine the extension of the file being received? Here's my code.

Client Side

        socket = new Socket(IP,4445);
        File myFile = new File ("/mnt/sdcard/Pictures/A.jpg");
        FileInputStream fis = null;
            fis = new FileInputStream(myFile);
        OutputStream os = null;
            os = socket.getOutputStream();
        int filesize = (int) myFile.length();

        byte [] buffer  = new byte [filesize];
             int bytesRead =0;
                while ((bytesRead = fis.read(buffer)) > 0) {
                 os.write(buffer, 0, bytesRead);
                 System.out.println("SO sendFile" + bytesRead);
                 }
                os.flush();
                os.close();
                fis.close();
                socket.close();
        }

And the Server side

        FileOutputStream fos = null;
    File root = Environment.getExternalStorageDirectory();
            fos = new FileOutputStream(new File(root,"B.jpg")); //Here I have to hardcode B.jpg with jpg extension.
        BufferedOutputStream bos = new BufferedOutputStream(fos);
            ServerS = new ServerSocket(4445);
            clientSocket = ServerS.accept();
        InputStream is = null;
            is = clientSocket.getInputStream();

        int bytesRead = 0;
        int current = 0;
        byte [] mybytearray  = new byte [329];
            do {

                bos.write(mybytearray,0,bytesRead);
                bytesRead = is.read(mybytearray, 0, mybytearray.length);

                } while(bytesRead > -1);

                bos.flush();
                bos.close();
            clientSocket.close();
    }
share|improve this question

2 Answers

You can find the file extension pretty easily by doing this:

String extension = filename.substring(filename.lastIndexOf('.'));
share|improve this answer

Are you looking for the file extension or the file type?

The file extension is the part of a filename after the last dot. It does not have to do anything with the file type, i.e. nothing prevents you from naming a MPEG movie file (very inappropriately) as movie.txt, so its extension will be txt. The extension is part of the filename, so if you want the receiving end to have this information, you have to send it over.

The file type is the type of the file. Even if you name a MPEG movie file as movie.txt, it will still be a movie file, it does not become a text file. The file type can be determined in various ways, for example using filesystem tests, magic tests and language tests, as explained in the man page of the file command in Linux/UNIX/BSD.

There is no easy way to determine the file type. I think your best bet is to trust the file extension and send it over. Implement different commands in your protocol to send file name and file content.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.