会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
听浪
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
2015年6月26日
如何通过Request.ServerVariables["HTTP_USER_AGENT"]获取客户端操作系统信息
摘要: http://www.useragentstring.com/pages/api.php
阅读全文
posted @ 2015-06-26 11:23 听浪
阅读(424)
评论(0)
推荐(0)
2015年6月6日
将图片转换为Base64
摘要: string Imagefilename 硬盘路径protected string ImgToBase64String(string Imagefilename) { try { Bitmap bmp = ne...
阅读全文
posted @ 2015-06-06 13:53 听浪
阅读(243)
评论(0)
推荐(0)
asp.net 图片质量压缩(不改变尺寸)
摘要: private static ImageCodecInfo GetEncoderInfo(String mimeType) { int j; ImageCodecInfo[] encoders; enco...
阅读全文
posted @ 2015-06-06 13:52 听浪
阅读(5813)
评论(0)
推荐(1)
下载网路图片并保存在硬盘
摘要: string url URL地址string path 保存到硬盘的具体路径WebClient wc = new WebClient(); wc.DownloadFile(new Uri(url.ToString()), path);
阅读全文
posted @ 2015-06-06 13:50 听浪
阅读(389)
评论(1)
推荐(0)
2015年5月5日
HTTP Content-type 对照表
摘要: 文件扩展名Content-Type(Mime-Type)文件扩展名Content-Type(Mime-Type).*(二进制流)application/octet-stream.tifimage/tiff.001application/x-001.301application/x-301.323te...
阅读全文
posted @ 2015-05-05 09:50 听浪
阅读(268)
评论(0)
推荐(0)
2015年2月4日
mssql 查询全部用户创建表 条数及占用空间大小(KB)
摘要: select b.name as tablename , --表名a.rowcnt as datacount, --条数rtrim(8*a.dpages) as size --占用空间单位KBfrom sysindexes a ,sysobjects bwhere a.id = b.idand a...
阅读全文
posted @ 2015-02-04 11:36 听浪
阅读(206)
评论(0)
推荐(0)
2014年12月15日
幸运抽奖数据结构
摘要: /****** Object: Table [dbo].[Sweepstakes] Script Date: 12/15/2014 08:50:41 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOCREATE TABLE [dbo]....
阅读全文
posted @ 2014-12-15 08:53 听浪
阅读(328)
评论(0)
推荐(0)
2014年12月10日
非UI线程和UI线程通信
摘要: public void onClick(View v) { new Thread(new Runnable() { public void run() { final Bitmap bitmap = loadImageFromNetwork("http://...
阅读全文
posted @ 2014-12-10 11:37 听浪
阅读(174)
评论(0)
推荐(0)
上一页
1
2
3
公告