Search:

Type: Posts; User: ashi123

Search: Search took 0.09 seconds.

  1. Method :sending image java server to php client

    I am using socket programming for sending images java to client . is it a good method? what are the methods are availble for sending image ?
  2. Re: send image file from java to php broken pipe exception occured

    i have debug this application oos.write(buffer); this line makes the error i am using socket programming from connecting java and php.. this program send the image to php.


    full code


    /*...
  3. send image file from java to php broken pipe exception occured

    FileInputStream fis = new FileInputStream("/Users/ashida/test/Cross.jpg");
    byte[] buffer = new byte[fis.available()];
    fis.read(buffer);
    ...
Results 1 to 3 of 3