• 读文本信息



    public bool UserIDfromFile(string userID)
        {
            bool result = false;
            string strFileName = HttpContext.Current.Server.MapPath(@".file") + @"userInfo.txt";
            if (!System.IO.File.Exists(strFileName))
            {
                throw new Exception(strFileName + "打开失败!");
                result = false;
            }
            try
            {
                string strFileContents = string.Empty;
                FileStream fs = new FileStream(strFileName, FileMode.Open, FileAccess.Read);
                StreamReader reader = new StreamReader(fs, System.Text.Encoding.Default);
                strFileContents = reader.ReadToEnd();
                strFileContents.Replace(" ", "");
                string[] Items = strFileContents.Trim().Split('=');
                if (Items.Length >= 2)
                {
                    string userinfo = strFileContents.Split('=')[1].Trim();
                    string[] userIDs = userinfo.Split(',');
                    for (int i = 0; i < userIDs.Length; i++)
                    {
                        if (userID == userIDs[i].Trim())
                        {
                            result = true;
                        }
                    }
                }
                fs.Close();
                reader.Close();
            }
            catch
            {
                result = false;
            }
            return result;
        }

  • 相关阅读:
    第1年4月22日 IBInspectable巧妙用法 cornerRadius
    第1年4月15日
    第1年4月9日 Domain: com.apple.dt.MobileDeviceErrorDomain
    第1年4月7日 活体检测
    GPS 波段信号范围
    tomcat远程调试
    JdbcTemplate或hibernate动态建表
    jdk动态代理失效,事务自调用失效
    Tomcat 访问静态资源出现中文乱码解决办法(转)
    SQL Server 查看死锁进程(转)
  • 原文地址:https://www.cnblogs.com/libbybyron/p/4125880.html
Copyright © 2020-2023  润新知