上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: 1、安装ssh服务 sudo apt-get install openssh-serversudo apt-get install ufwsudo ufw enablesudo ufw allow 22 2、当我们在虚拟机上成功安装了 ssh 服务后,此时Xshell 远程连接时,不会出现 conn 阅读全文
posted @ 2022-05-15 20:30 CelonY 阅读(139) 评论(0) 推荐(0) 编辑
摘要: public static class RequestService { public static string jwttoken = "Api验证权限需要的秘钥"; /// <summary> /// GET请求 /// </summary> /// <param name="url">请求地址 阅读全文
posted @ 2022-05-08 16:07 CelonY 阅读(678) 评论(0) 推荐(1) 编辑
摘要: public static class ObjectToMapServie { #region 对象转成字典 /// <summary> /// 对象转换为字典 /// </summary> /// <param name="obj">待转化的对象</param> /// <returns></re 阅读全文
posted @ 2022-05-08 16:05 CelonY 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 来源:https://www.jb51.net/article/148907.htm public class DESEncrypt { private static string DESKey = "Key"; #region 加密 /// <summary> /// 加密 /// </summa 阅读全文
posted @ 2022-05-07 11:05 CelonY 阅读(367) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-04-05 17:42 CelonY 阅读(517) 评论(0) 推荐(0) 编辑
摘要: 1、docker安装 https://www.docker.com/get-started/ 下载docker桌面版 一、docker安装mysql 1、拉去镜像命令 docker pull mysql:8.0 2、docker启动mysql docker run -itd --name mysql 阅读全文
posted @ 2022-04-03 12:52 CelonY 阅读(1532) 评论(0) 推荐(0) 编辑
摘要: 1、安装Node.js 2、安装vue-cli npm install -g @vue/cli 3、创建项目 vue create 项目名 4、安装Typescript支持 vue add typescript 5、安装必要的包 npm install sass-loader --save npm 阅读全文
posted @ 2022-03-20 21:55 CelonY 阅读(1043) 评论(0) 推荐(0) 编辑
摘要: USE master; GO CREATE DATABASE ZhaoxiPotalDb ON ( NAME=ZhaoxiPotalDb_dat, --数据库数据文件 FILENAME='F:\TestDatabase\ZhaoxiPotalDb.mdf',--数据库数据文件存储位置 SIZE=10 阅读全文
posted @ 2022-03-20 12:14 CelonY 阅读(124) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zhou279818998/article/details/80691544 当在SQL SERVER中建立好链接服务器之后,我们可以使用下面的方法对远程的数据库进行相关的操作。 假设链接服务器的名称为 Orcl SELECT: 指明要选择的列的过虑条件, 阅读全文
posted @ 2022-02-14 10:33 CelonY 阅读(272) 评论(0) 推荐(0) 编辑
摘要: OpenFileDialog dialog = new OpenFileDialog(); if (dialog.ShowDialog() == DialogResult.OK) { string filename = dialog.FileName; if (filename.Contains(" 阅读全文
posted @ 2021-12-19 17:43 CelonY 阅读(963) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页