我从1996年开始使用UNIX机器生成以下输出...我们正在升级Windows软件,我需要从C#创建这个确切的输出http://pastebin.com/YBHpSYDW
我无法处理一些问题,因为我不知道如何......
如何确定列,如果是纯文本,请将“IMPORTE”列的对齐设置为右侧?
我在Excel中完成了这个输出,它更具可读性和灵活性......但是他们想要这个令人毛骨悚然的旧东西因为很多原因而他们我会变得疯狂为这些人工作,他们不想升级任何东西,只是软件,但保留每一个令人毛骨悚然的东西@输出......
因此,如果有人知道这样做的方法,那将非常有用,谢谢。
修改 输出是来自SQL Server的数据列表,旧数据存储在MultiValue .DAT和.IDX文件中,但现在它们在SQL Server中......所以基本上,生成值的代码如下< / p>
var Query = getRows(sel.DataTable).Select(row =>
{
return new
{
banco = row["banco"].ToString(),
emisora = row["emisora"].ToString(),
sucursal = row["sucursal"].ToString(),
fecha = row["fecha"].ToString(),
identificacion = row["identificacion"].ToString(),
importe = row["importe"].ToString(),
importe_dec = row["importe_dec"].ToString(),
provincia = row["provincia"].ToString(),
referencia = row["referencia"].ToString(),
};
});
然后我做一些foreach来制造魔法...例如
foreach (var banco in Query.GroupBy(l => l.banco))
所以问题是打印的输出文件......
编辑2 搞定了,这是代码
private void generarFicheroPrt()
{
try
{
SelectBD sel = new SelectBD(Program.ConexBD, "SELECT * FROM Seguros");
var Query = getRows(sel.DataTable).Select(row =>
{
return new
{
banco = row["banco"].ToString(),
emisora = row["emisora"].ToString(),
sucursal = row["sucursal"].ToString(),
fecha = row["fecha"].ToString(),
identificacion = row["identificacion"].ToString(),
importe = row["importe"].ToString(),
importe_dec = row["importe_dec"].ToString(),
provincia = row["provincia"].ToString(),
referencia = row["referencia"].ToString(),
};
});
using (StreamWriter sw = new StreamWriter(Program.path + @"\CV9005.prt"))
{
int i = 1;
int pag = 0;
int linea = 1;
sw.WriteLine();
sw.WriteLine("\x1b&l1O\x1b(s14H");
decimal total = 0;
foreach (var valor in Query.OrderBy(l => l.emisora))
{
if (linea == 48) linea = 1;
if (linea == 1)
{
pag++;
sw.WriteLine("\xc\t0125 BANCOFAR" + string.Empty.PadLeft(37, '\x20') + "COBRO POR VENTANILLA S. S. - CONTROL DE DOCUMENTOS PAG. "+ pag +"\n\n");
sw.WriteLine("\t N.ORDEN NUMERO REFERENCIA IMPORTE SUC. EMISORA");
sw.WriteLine("\t ------- ----------------- ---------------- ---- -----------------------------------------------------------");
sw.WriteLine();
}
setSufijoEmisora(valor.emisora);
decimal importe = Convert.ToDecimal(Int32.Parse(valor.importe) + "," + valor.importe_dec);
string imp = importe.ToString("N2", Cultures.Spain);
sw.WriteLine("\t\t" + string.Format("{0, 4}\t{1, -13}\t\t{2, 13}{3,6} {4, -59}", i.ToString(), valor.referencia, imp, valor.sucursal, valor.emisora + " " + sufijoEmisora));
i++;
linea++;
total = total + importe;
}
sw.WriteLine();
sw.WriteLine("\t\t\t\t\t TOTAL .....\t" + string.Format("{0, 13}", total.ToString("N2", Cultures.Spain)));
};
}
catch (Exception ex)
{
Logger.log(ex);
}
}
答案 0 :(得分:1)
使用工具箱中的“PrintDocument”工具。
http://msdn.microsoft.com/en-gb/library/system.drawing.printing.printdocument%28v=vs.110%29.aspx
这将帮助您进行基本格式化。
修改强>
要获得更丰富的格式化和保存到文件,请使用Microsoft.Office.Core命名空间
http://msdn.microsoft.com/en-us/library/microsoft.office.core.aspx
如果您需要非ASCII编码,请确保根据您的要求设置编码并使用所需的编码保存文件。
http://msdn.microsoft.com/en-us/library/microsoft.office.core.msoencoding.aspx
using(StreamWriter writer = new StreamWriter("a.txt", false, Encoding.UTF8))
{
writer.WriteLine(s);
}