Eğer resimleri veritabanından okuyorsanız belki ihtiyacınız olabilir
Resimleri veritabanından asp.net'te handler dosyaları ile istediğiniz formata çevirebilrisiniz. Ancak bazen flash dosyaları bu handler dosyalarını çözümleyemez, sorunu çözmek için resim dosyalarını sunucuda fizikselde tutmak isteyebilirsiniz
Eğer dosyanınızın hala orda olup olmadığını veya güncellediğini bilmek isterseniz bu yöntemide uygulayabilirsiniz
string localFilename = @"c:\localpath\tofile.jpg";
using(WebClient client = new WebClient())
{
client.DownloadFile("http://www.example.com/image.jpg", localFilename);
}
Eğer dosyanınızın hala orda olup olmadığını veya güncellediğini bilmek isterseniz bu yöntemide uygulayabilirsiniz
private static void DownloadRemoteImageFile(string uri, string fileName)
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(uri);
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
// Check that the remote file was found. The ContentType
// check is performed since a request for a non-existent
// image file might be redirected to a 404-page, which would
// yield the StatusCode "OK", even though the image was not
// found.
if ((response.StatusCode == HttpStatusCode.OK ||
response.StatusCode == HttpStatusCode.Moved ||
response.StatusCode == HttpStatusCode.Redirect) &&
response.ContentType.StartsWith("image",StringComparison.OrdinalIgnoreCase))
{
// if the remote file was found, download oit
using (Stream inputStream = response.GetResponseStream())
using (Stream outputStream = File.OpenWrite(fileName))
{
byte[] buffer = new byte[4096];
int bytesRead;
do
{
bytesRead = inputStream.Read(buffer, 0, buffer.Length);
outputStream.Write(buffer, 0, bytesRead);
} while (bytesRead != 0);
}
}
}
Yorumlar
Yorum Gönder