c# 要把sql语句调用出来的数据以指定格式输出有什么办法

 我来答
最强的力量
2010-11-08 · TA获得超过326个赞
知道小有建树答主
回答量:142
采纳率:0%
帮助的人:113万
展开全部
format语句

using System;
using System.Globalization;

class Sample
{
enum Color {Yellow = 1, Blue, Green};
static DateTime thisDate = DateTime.Now;

public static void Main()
{
// Store the output of the String.Format method in a string.
string s = "";

Console.Clear();

// Format a negative integer or floating-point number in various ways.
Console.WriteLine("Standard Numeric Format Specifiers");
s = String.Format(CultureInfo.InvariantCulture,
"(C) Currency: . . . . . . . . {0:C}\n" +
"(D) Decimal:. . . . . . . . . {0:D}\n" +
"(E) Scientific: . . . . . . . {1:E}\n" +
"(F) Fixed point:. . . . . . . {1:F}\n" +
"(G) General:. . . . . . . . . {0:G}\n" +
" (default):. . . . . . . . {0} (default = 'G')\n" +
"(N) Number: . . . . . . . . . {0:N}\n" +
"(P) Percent:. . . . . . . . . {1:P}\n" +
"(R) Round-trip: . . . . . . . {1:R}\n" +
"(X) Hexadecimal:. . . . . . . {0:X}\n",
-123, -123.45f);
Console.WriteLine(s);

// Format the current date in various ways.
Console.WriteLine("Standard DateTime Format Specifiers");
s = String.Format(CultureInfo.InvariantCulture.DateTimeFormat,
"(d) Short date: . . . . . . . {0:d}\n" +
"(D) Long date:. . . . . . . . {0:D}\n" +
"(t) Short time: . . . . . . . {0:t}\n" +
"(T) Long time:. . . . . . . . {0:T}\n" +
"(f) Full date/short time: . . {0:f}\n" +
"(F) Full date/long time:. . . {0:F}\n" +
"(g) General date/short time:. {0:g}\n" +
"(G) General date/long time: . {0:G}\n" +
" (default):. . . . . . . . {0} (default = 'G')\n" +
"(M) Month:. . . . . . . . . . {0:M}\n" +
"(R) RFC1123:. . . . . . . . . {0:R}\n" +
"(s) Sortable: . . . . . . . . {0:s}\n" +
"(u) Universal sortable: . . . {0:u} (invariant)\n" +
"(U) Universal sortable: . . . {0:U}\n" +
"(Y) Year: . . . . . . . . . . {0:Y}\n",
thisDate);
Console.WriteLine(s);

// Format a Color enumeration value in various ways.
Console.WriteLine("Standard Enumeration Format Specifiers");
s = String.Format(CultureInfo.InvariantCulture,
"(G) General:. . . . . . . . . {0:G}\n" +
" (default):. . . . . . . . {0} (default = 'G')\n" +
"(F) Flags:. . . . . . . . . . {0:F} (flags or integer)\n" +
"(D) Decimal number: . . . . . {0:D}\n" +
"(X) Hexadecimal:. . . . . . . {0:X}\n",
Color.Green);
Console.WriteLine(s);
}
}

不知道你具体是想怎么处理数据
不过关于format的方法使用在c#的msdn里面有详细用法 你自己找你自己想要的用法。加油
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
步试伪讶痔21
2010-11-08 · TA获得超过157个赞
知道小有建树答主
回答量:179
采纳率:100%
帮助的人:67.7万
展开全部
用foreach语句把结果一行一行输出来,格式控制可以用format函数
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
秋天的秋风秋bG
2010-11-08 · TA获得超过605个赞
知道小有建树答主
回答量:1205
采纳率:0%
帮助的人:505万
展开全部
楼主 你所说的输出是什么输出 (控制台输入) 还是 空间输出 还是网页 输出了
控制台 直接用 语句 你知道的
c/s 的话 可以拖个空间输出啊
网页 输出的话 你可以用这个 控件DataList 这个控件比较灵活 想怎么 输出都可以
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
geto1080
2010-11-08 · TA获得超过320个赞
知道小有建树答主
回答量:1359
采纳率:100%
帮助的人:527万
展开全部
先转化为JSON,在根据需要的格式制定输入
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
司琅0Iid5b
2010-11-09 · TA获得超过802个赞
知道小有建树答主
回答量:319
采纳率:0%
帮助的人:615万
展开全部
你好,希望对你有帮助。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(4)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式