Sponsored Links


Results 1 to 2 of 2

Thread: Send image to client over a socket in java 2011

  1. #1
    Administrator Vuhelper's Avatar
    Join Date
    Apr 2011
    Posts
    9,578

    98 Send image to client over a socket in java 2011

    Sponsored Links1


    Code:
        package main;
         
        import java.io.BufferedInputStream;
        import java.io.BufferedOutputStream;
        import java.io.File;
        import java.io.FileInputStream;
        import java.io.FileNotFoundException;
        import java.io.FileOutputStream;
        import java.io.IOException;
         
        public class DataSendTester {
         
        public static void main( String[] args ) {
        File testF = new File( "test.jpg" );
        File result = new File( "TEST/testImg.jpg" );
         
        try {
        System.out.println( "Writing..." );
        BufferedInputStream in = new BufferedInputStream( new FileInputStream( testF ) );
        BufferedOutputStream out = new BufferedOutputStream( new FileOutputStream( result ) );
         
        byte[] buffer = new byte[ 4096 ];
        int bytesRead;
        while ( (bytesRead = in.read( buffer )) != -1 ) {
        out.write( buffer, 0, bytesRead );
        }
         
        out.flush();
        out.close();
         
        System.out.println( "Done." );
         
        } catch ( FileNotFoundException e ) {
        e.printStackTrace();
        } catch ( IOException e ) {
        e.printStackTrace();
        }
        }
         
        }


    Sponsored Links

  2. #2
    Junior Member
    Join Date
    Apr 2012
    Posts
    1
    Thank 4 share.
    I'm new menber

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 0
    Last Post: 11-03-2011, 09:08 PM
  2. Replies: 0
    Last Post: 06-23-2011, 11:41 PM
  3. Java applet working or not on windows 7 Java 2011
    By Vuhelper in forum Java forum
    Replies: 0
    Last Post: 06-14-2011, 09:22 PM
  4. Java Applet Won't Load In Browser 2011 Java
    By Vuhelper in forum Java forum
    Replies: 0
    Last Post: 06-14-2011, 09:20 PM
  5. Replies: 1
    Last Post: 04-28-2011, 08:55 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
-: Vuhelp Disclaimer :-
None of the files shown here are hosted or transmitted by this server. The links are provided solely by this site's users. The administrator's or staff of Vuhelp.net cannot be held responsible for what its users post, or any other actions of its users. You may not use this site to distribute or download any material when you do not have the legal rights to do so. It is your own responsibility to adhere to these terms. If you have any doubts about legality of content or you have any suspicions, feel free to contact us.
Online Education | JhelumSoft