Hi, I wanted to know about how i can get images from the server. Right now the method i used was like this:
1. Create a GET method for the image and Execute it.
2. Get its input stream
3. Use while loop as follows:
while((web_data = in.read()) != -1) {
dataFile.writeOneChar((char)web_data);
}
4. And then close the file and the connection.
But this is not working. Please can anyone tell me how can i achieve this ?
Regards,
Sid
