我已将图像的路径存储在MYSQL表中。现在,当我尝试检索路径时,除了将.jpg的点(。)检索为©jpg之外,所有路径都被正确检索,因此出现了没有这样的文件的例外。
string fileName =Convert.ToString(dt.Rows[rowIndex]["photo"]); //File name with Exstension and Path
FileInfo fi = new FileInfo(fileName);
BitmapImage img = new BitmapImage(); //BitmapImage for showing in the image control
img.BeginInit();
img.UriSource = new Uri(fileName);
img.EndInit();
imgPic.Source = img;
答案 0 :(得分:1)
我发现了这个问题。我实际上已将该特定列的排序规则从ascii_general_ci更改为armscii8_general_ci