博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 读取Text文本,写入Text文本
阅读量:5367 次
发布时间:2019-06-15

本文共 1568 字,大约阅读时间需要 5 分钟。

//读取 private void showMess()        {            this.dataGridViewX2.Rows.Clear();            //将车辆信息一行行添加到datagreatview  里面            StreamReader sr = File.OpenText("C:\\Users\\Administrator\\Desktop\\CarMessages.txt");            string line;            int i = 0;            List
list = new List
(); while ((line = sr.ReadLine()) != null) { list.Add(line); i++; } dataGridViewX2.Rows.Add(i); int qq = list.Count; for (int a = 0; a < qq; a++) { dataGridViewX2.Rows[a].Cells[0].Value = list[a].ToString(); } //列宽自适应 dataGridViewX2.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells; dataGridViewX2.ReadOnly = true; }

写入Text

try                {                    MultiFormatWriter mutiWriter = new com.google.zxing.MultiFormatWriter();                    ByteMatrix bm = mutiWriter.encode( table.Rows[0]["CarID"].ToString() , com.google.zxing.BarcodeFormat.QR_CODE, 363, 150);                    Bitmap img = bm.ToBitmap();                    string filename = "C:\\Users\\Administrator\\Desktop\\Car_Messages\\" + table.Rows[0]["MenName"].ToString()  + table.Rows[0]["CarID"].ToString() + ".jpg";                    img.Save(filename, System.Drawing.Imaging.ImageFormat.Jpeg);                }                catch (Exception ee)                { MessageBox.Show(ee.Message); }            }

 

转载于:https://www.cnblogs.com/hanke123/p/5541260.html

你可能感兴趣的文章
事务,视图与索引
查看>>
WinMTR
查看>>
CountDownLatch
查看>>
jsp建立错误页自动跳转
查看>>
Java对象与对象引用变量的理解
查看>>
关于应用程序出现窗口不完整,GDI对象猛增,GDI资源泄漏的问题的探讨
查看>>
linux下创建django-app
查看>>
django-查询按时间排序
查看>>
Instrumentation: querying the memory usage of a Java object
查看>>
(61)zabbix网络发现规则配置实战/详解
查看>>
Ubuntu总结常用命令记录
查看>>
第一次使用Android Studio时你应该知道的一切配置(二): 新建一个属于自己的工程并安装Genymotion模拟器...
查看>>
MVC前台页面做登录验证
查看>>
二进制、八进制、十进制、十六进制
查看>>
mysql优化(上)
查看>>
window server 2008 r2开启回收站(ldp)
查看>>
nginx 安装和配置文件说明
查看>>
python数据类型详解
查看>>
Java多线程框架Executor详解
查看>>
[转]如何学习C#,学习C#的步骤.很详细.
查看>>