A small example of a DataTable converted to a string copy to txt text _ Practical Tips

Source: Internet
Author: User

I wrote a DataTable, a way of turning a string.

Copy Code code as follows:

public static string datatabletostring (DataTable dt)
{
String dtstring = "";
for (int i = 0; i < dt. Columns.count; i++)
{
dtstring =dtstring+ dt. Columns[i]. ColumnName + "T";
}
Dtstring =dtstring+ "\ r \ n";
for (int i = 0; i < dt. Rows.Count; i++)
{
for (int j = 0; j < dt.) Columns.count; J + +)
{
dtstring =dtstring+ dt. ROWS[I][J] + "T";
}
dtstring = dtstring + "\ r \ n";
}
return dtstring;
}

becomes a string, and you can copy it.

Copy Code code as follows:

String strtemp = Datatabletostring (TT);

if (Strtemp.equals (""))//Determine if NULL
Return
Clipboard.clear ()//clear the contents of the original clipboard
Clipboard.settext (strtemp);//Add text to the Clipboard and add object type data


Play a txt text Ctrl + V feel the victory:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.