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

I have trying to make the server send a file to the all connected clients,i have many codes,but sometimes the computer makes noise and the files are written to the console so i was encouraged to use DataOutputStream,but getting some problems,the files are created but they are empty.Could anyone please help me about that? Here is the server-thread sending code:

        out.println("AcceptFile,");
        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        ObjectOutputStream oos = new ObjectOutputStream(bos);
        oos.writeObject((Object)fn);

        byte[] bytes = bos.toByteArray();

        FileOutputStream fos = new FileOutputStream(fn);
    //  DataOutputStream dos = new DataOutputStream(fos);

        DataOutputStream dos = new DataOutputStream(socket.getOutputStream());

        // header
        dos.writeInt(bytes.length);
        for (int i = 0; i < bytes.length; i++) 
        {
             dos.write(bytes[i]); 
        }
        dos.flush();`

Here is the Client-receiving code:

                String pic="copy"+studId+".pdf";
                System.out.println(pic);
                FileOutputStream fos = new FileOutputStream(pic);
                DataInputStream dis = new DataInputStream(socket.getInputStream());

                System.out.println("inside try send");
                int numToRead = dis.readInt();
                byte[] bytes =  new byte[numToRead]; 
                dis.readFully(bytes);

                ByteArrayInputStream bis = new ByteArrayInputStream(bytes);

                ObjectInputStream ois = new ObjectInputStream(bis);

                ois.readObject();

                for (int i = 0; i < bytes.length; i++) 
                {
                     fos.write(bytes[i]);   
                }

                fos.flush();
                fos.close();
share|improve this question
2  
If had you bothered to accept some answers, I might have bothered to answer your question. – Stephen C May 14 '11 at 13:52
@StephenC I have accepted many answers and part of this code was from it. – Fatema Mohsen May 14 '11 at 14:16
@I82Much Sorry but i don`t know where is this mark? – Fatema Mohsen May 14 '11 at 14:24
@Fatema: can you answer the question yourself and then accept that answer? Also, you need to accept answers to previous questions if they fix your problem. – Zecas May 16 '12 at 9:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.