本文介绍了如何在pdf中获取表格格式的数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的代码是

my code is

public static string DGVtoString(DataGridView dgv)
       {
           string tab = "\t";
           StringBuilder sb = new StringBuilder();
        sb.AppendFormat("<html>");
            sb.AppendFormat("<body>");
            sb.Append("<table>");
           foreach (DataGridViewRow row in dgv.Rows)
           {
              sb.AppendFormat(tab + tab + tab + "<tr>");
               foreach (DataGridViewCell cell in row.Cells)
               {
                   sb.AppendFormat(tab + tab + tab + "<td>");
                        sb.Append(cell.Value);
                   sb.AppendFormat(tab + tab + tab + "<td>");

               }
               sb.AppendFormat("</tr>");

           }

           sb.Append(tab + tab + "</table>");
           sb.AppendFormat(tab + "</body>");
           sb.AppendFormat("</html>");
           return sb.ToString();
       }





我的尝试:



i得到输出,其中包含修复格式的html标签。



What I have tried:

i got output with html tags insted of fix format.

推荐答案


这篇关于如何在pdf中获取表格格式的数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 04:11