赞
踩
本人在项目中遇到的问题,在这和大家分享一下。
1.C#程序在window环境中运行正常,但是在Linux环境下,在读取文件的时候一直报错
后面经过排查,发现读的文件顺序与window环境下不同,导致从数组中提取元素,不满足程序读取原则(要求读取json文件,Linux读到图片了)。
2.解决办法,在数组组件的时候,调取Sort()方法自动排序 读取文件顺序(和window一样)
private void uploadPath(string dataPath, string dateType) { var a = dataPath + "/Data/"+ dateType + "/"; var b = new List<string>(); string[] Files = Directory.GetFiles(a); foreach (var file in Files) { if (file.Contains("/A.jpg")) { b.Add(file); } else if (file.Contains("/B.jpg")) { b.Add(file); } else if (file.Contains("/C.jpg")) { b.Add(file); } else if (file.Contains("/D.jpg")) { b.Add(file); } else if (file.Contains("/upload.json")) { b.Add(file); } } b.Sort();//组智能排序 uploadJsonPath = b[4];//写入本类属性 UploaderProperty.uploadPathPic = b.ToArray();//写入到全局变量里 }
使用b.Sort(),里面的元素。就按照首字母排序了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。