会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
东京花语
博客园
首页
新随笔
联系
订阅
管理
2020年5月12日
mysql 安装及问题处理
摘要: 安装:http://www.baidu.com/link?url=JoaQN5cBFfhOiKSlJ1I9e6FYucguY-EAKn8Mexg0bPEQataC9pDid1MLzwYYyW9KucPwewGhjSKTF9SbxjQjYK 问题处理: https://blog.csdn.net/we
阅读全文
posted @ 2020-05-12 14:30 东京花语
阅读(125)
评论(0)
推荐(0)
2020年5月7日
获取音频指纹 (傅里叶变换)
摘要: 参考:https://blog.csdn.net/sinat_38682860/article/details/80735513 傅里叶变换:https://www.cnblogs.com/h2zZhou/p/8405717.html
阅读全文
posted @ 2020-05-07 11:29 东京花语
阅读(210)
评论(0)
推荐(0)
2020年4月30日
C# JsonConvert
摘要: 使用前先用json字符串转换出实体类 Root r = new Root(); r.lang = "zh-CN"; r.payload = new Payload(); r.payload.parm = new Params(); r.payload.parm.appKey = "--"; r.pa
阅读全文
posted @ 2020-04-30 09:19 东京花语
阅读(1144)
评论(0)
推荐(0)
2020年4月29日
C# WinForm 获取句柄与置顶窗体
摘要: [System.Runtime.InteropServices.DllImport("user32.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto, ExactSpelling = true)] public static ex
阅读全文
posted @ 2020-04-29 09:14 东京花语
阅读(1788)
评论(1)
推荐(1)
C# 远程读取服务器中的配置文件
摘要: WebClient client = new WebClient(); byte[] buffer = client.DownloadData("http:// "); string res = System.Text.ASCIIEncoding.ASCII.GetString(buffer);
阅读全文
posted @ 2020-04-29 08:54 东京花语
阅读(826)
评论(0)
推荐(0)
2020年4月28日
C# 对比图片相似度
摘要: 参考:https://blog.csdn.net/chengmodelong/article/details/24521295
阅读全文
posted @ 2020-04-28 14:09 东京花语
阅读(1625)
评论(0)
推荐(0)
2020年4月27日
HTML 随意编辑页面内容
摘要: document.body.contentEditable='true';
阅读全文
posted @ 2020-04-27 16:27 东京花语
阅读(347)
评论(0)
推荐(0)
C# WinForm 禁止控件闪烁
摘要: protected override CreateParams CreateParams { get { CreateParams cp = base.CreateParams; cp.ExStyle |= 0x02000000; // Turn on WS_EX_COMPOSITED if (th
阅读全文
posted @ 2020-04-27 10:02 东京花语
阅读(484)
评论(0)
推荐(0)
C# 控制多屏幕设置
摘要: private const uint SDC_APPLY = 0x00000080; private const uint SDC_TOPOLOGY_INTERNAL = 0x00000001; private const uint SDC_TOPOLOGY_CLONE = 0x00000002;
阅读全文
posted @ 2020-04-27 09:48 东京花语
阅读(987)
评论(0)
推荐(0)
公告