| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 618 人关注过本帖
标题:“System.IO.FileStream”隐式转换为“导入导出.Filestream”
取消只看楼主 加入收藏
hellation
Rank: 2
等 级:论坛游民
帖 子:38
专家分:56
注 册:2015-4-11
结帖率:0
收藏
已结贴  问题点数:10 回复次数:1 
“System.IO.FileStream”隐式转换为“导入导出.Filestream”
当我敲下这行代码:
using (Filestream filestream = File.OpenRead(odfimport.FileName))
   {  }
系统就会报错:错误    1    无法将类型“”隐式转换为“导入导出.Filestream”    C:\Users\Administrator\Documents\Visual Studio 2010\Projects\导入导出\导入导出\Form1.cs    27    44    导入导出
搜索更多相关主题的帖子: Documents Users 
2015-04-14 17:45
hellation
Rank: 2
等 级:论坛游民
帖 子:38
专家分:56
注 册:2015-4-11
收藏
得分:0 
回复 2楼 hkkuality
//if (odfimport .ShowDialog ()==DialogResult .OK )
            //{
            //    using(Filestream filestream=File.OpenRead (odfimport .FileName))
            //    {
            //        using (StreamReader  streamread=new StreamReader(filestream))
            //        {
            //            string line = null;
            //            while ((line = streamread.ReadLine()) != null)
            //            {
            //                string[] strs = line.Split('|');
            //                string name = strs[0];
            //                int age = Convert.ToInt32(strs[1]);

            //                using (SqlConnection conn = new SqlConnection(@"Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Db.mdf;Integrated Security=True;User Instance=True"))
            //                {
            //                    conn.Open();
            //                    using (SqlCommand cmd = conn.CreateCommand())
            //                    {
            //                         = "insert into Td(name,age)values(@name,@age)";
            //                        cmd.Parameters.Add(new SqlParameter("name", name));
            //                        cmd.Parameters.Add(new SqlParameter("age", age));
            //                        cmd.ExecuteNonQuery();
            //                    }
            //                }
            //             }

            //        }
               
            //    }


简单说就是把一个text文档按|分位符插入数据库     才开始学   感觉好难    纠结
2015-04-14 19:11
快速回复:“System.IO.FileStream”隐式转换为“导入导出.Filestream”
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.022002 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved