- 博客(9)
- 收藏
- 关注
原创 springboot+vue+eladmin+uniapp学习商城项目
1app代码链接:https://gitee.com/chen-kang-space/ck-uni-ui.git后台管理代码链接:https://gitee.com/chen-kang-space/eladmin-web-master.git前端代码链接:https://gitee.com/chen-kang-space/ck-uni-ui.git使用框架eladmin:https://el-admin.vip/uniapp:https://uniapp.dcloud.io/mix-mall
2022-07-14 11:28:59
578
原创 java腾讯云人脸识别接口
1,引入maven依赖2,public class TenXunUtil {// 实例化一个认证对象,入参需要传入腾讯云账户secretId,secretKey,此处还需注意密钥对的保密// 密钥可前https://console.cloud.tencent.com/cam/capi网站进行获取public static String SecretId = "SecretId ";public static String SecretKey = "SecretKey ";//最多识别的人脸数
2022-07-14 10:35:09
2543
1
原创 list根据元素的某个属性值去重
//集合里去重subjects.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(()->new TreeSet<>(Comparator.comparing(Subject::getSubjectName))),ArrayList::new));
2021-03-19 09:44:52
205
原创 DataGridView怎么显示数据
【1】DataGridView控件的DatapropertyName属性中填写数据库里表的列名private const string str = “server=.;database=图书项目答辩;uid=sa;pwd=2000”;【2】 private void Frmborrow_Load(object sender, EventArgs e){ SqlConnecti...
2020-03-07 15:31:09
646
原创 C#打开文件路径
private void button1_Click(object sender, EventArgs e){OpenFileDialog fileDialog = new OpenFileDialog();fileDialog.Title = “请选择文件”;fileDialog.Filter = “所有文件(.)|.”;if (fileDialog.ShowDialog() == D...
2020-03-07 15:30:57
1815
原创 嵌套子窗体
private void button1_Click(object sender, EventArgs e){// 【1】 //关闭嵌入的其他窗体foreach(Control item in this.splitContainer.Panel2.Controls){if(item is Form)((Form)Item).Close();}// 【2】打开新的窗体FrmAddP...
2020-02-25 09:29:05
303
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人