读取文本文件不整齐,怎么办?
原来用vb写的生成.txt文件,很整齐:
240002 宝康灵活配置 1.6239 3.1639
240001 宝康消费品 1.2934 2.9511
240003 宝康债券 1.2151 1.3851
----------------------
asp.net读取.txt 后放入表格里面为:
240001 宝康消费品 1.2934 2.9511
213003 宝盈策略增长 1.3348 1.3348
050002 博时裕富 1.0340 3.0140
显示不整齐,不知道是vb出的问题,还是asp.net(c#)
using (StreamReader sr1 = new StreamReader(Server.MapPath( "news ") + "\\xxx.txt ",System.Text.Encoding.GetEncoding( "GB2312 ")))
{
//读取指定的文件模板
while ( sr1.ReadLine() != null)
str1 += sr1.ReadLine().Trim() + " <br/> ";
sr1.Close();
------解决方案--------------------想要对整齐应该+tab键
------解决方案--------------------在HTML中Tab是不起作用的,你应该使用表格方式,将ReadLine() 的内容拆分成4列放入TD,这样绝对整齐