会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
welcome to zhaosanmao
少说话,多吃饭
博客园
首页
新随笔
联系
订阅
管理
1
2
下一页
2023年11月17日
wcf restful 用stream接收表单数据并解析
摘要: 1.下载包HttpMultipartParser 2.服务端代码 public bool Upload(Stream stream) { var parser = MultipartFormDataParser.Parse(stream);//解析stream var file = parser.F
阅读全文
posted @ 2023-11-17 16:56 赵三毛
阅读(204)
评论(0)
推荐(0)
2023年11月1日
WCF restful 上传文件 返回413 request entity too large
摘要: 网上各种 加binding 都不行 最后找到了在配置文件中加 webHttpBinding 1 <system.serviceModel> 2 <bindings> 3 <webHttpBinding> 4 <binding 5 maxBufferPoolSize="2048576000" 6 ma
阅读全文
posted @ 2023-11-01 14:42 赵三毛
阅读(47)
评论(0)
推荐(0)
2023年9月14日
winform 中 实现 动态线条背景效果
摘要: 1.首先创建一个窗体。设置FormBoderStyle为 none; 2.拖入一个panle 到窗体中,设置Dock 属性,让panle填满整个 窗体。修改panel的Name为Login_back 3. 代码 1 public partial class Login1 : Form 2 { 3 p
阅读全文
posted @ 2023-09-14 17:43 赵三毛
阅读(269)
评论(0)
推荐(0)
2023年9月13日
c# 获取本机ip地址的方法
摘要: 1 public void GetNativeIp() 2 { 3 IPHostEntry hostEntry = Dns.GetHostEntry(Dns.GetHostName()); 4 foreach(var ip in hostEntry.AddressList) 5 { 6 if (ip
阅读全文
posted @ 2023-09-13 16:39 赵三毛
阅读(432)
评论(0)
推荐(0)
2023年7月27日
c# md5 加密
摘要: 1 public class MD5Utils 2 { 3 public string ComputeHash(string input) 4 { 5 using (MD5 md5 = MD5.Create()) 6 { 7 // 将输入字符串转换为字节数组 8 byte[] inputBytes
阅读全文
posted @ 2023-07-27 20:44 赵三毛
阅读(28)
评论(0)
推荐(0)
2023年7月14日
c# PasswordBoxHelper
摘要: 1 public class PasswordBoxHelper 2 { 3 public static readonly DependencyProperty PasswordProperty = DependencyProperty.RegisterAttached("Password", ty
阅读全文
posted @ 2023-07-14 22:05 赵三毛
阅读(80)
评论(0)
推荐(0)
2023年7月5日
wpf小说阅读器 ----wpf练习demo
摘要: 1.登录窗口布局 <Grid> <Grid.ColumnDefinitions> <ColumnDefinition/> <ColumnDefinition Width="2*"/> </Grid.ColumnDefinitions> <Border > <Border.Background> <I
阅读全文
posted @ 2023-07-05 15:09 赵三毛
阅读(174)
评论(0)
推荐(0)
2023年3月20日
2023前端面试题
摘要: https://blog.csdn.net/LJJONESEED/article/details/125906210
阅读全文
posted @ 2023-03-20 11:24 赵三毛
阅读(40)
评论(0)
推荐(0)
2023年3月1日
mybatisplus分页查询
摘要: @GetMapping("/page")public IPage<TManager> findPage(@RequestParam Integer pageNum, @RequestParam Integer pageSize){ IPage<TManager> page=new Page<>(pa
阅读全文
posted @ 2023-03-01 16:14 赵三毛
阅读(78)
评论(0)
推荐(0)
2022年10月6日
瑞吉外卖03
摘要: 1.公共字段自动填充 在实体类中需要被统一管理的字段上上面加上 @TableField注解,并在内部添加fill属性,INSERT为在执行新增操作时执行,@TableField(fill = FieldFill.INSERT加在create time字段上,即在调用maybatis-plus的sav
阅读全文
posted @ 2022-10-06 15:16 赵三毛
阅读(64)
评论(0)
推荐(0)
1
2
下一页
公告