- 博客(21)
- 收藏
- 关注
原创 springboot 图片服务器 jar 打包部署 linux 图片上传到磁盘
项目小程序要求把图片上传到另一个图片服务器中,这样可以和另一个小程序共享图片信息contrller@RestController@RequestMapping("/photoupload")public class PhotoController { @RequestMapping("/photo") public GenericResponse photoupload(HttpServletRequest request, @RequestParam(value = "fil
2021-04-08 23:22:05 546
原创 Linux下端口被占用解决
https://www.cnblogs.com/hnrainll/archive/2011/10/10/2205868.html
2021-04-08 22:14:20 92
原创 sstream 读入一行按空格分割
#include<iostream>#include<sstream>#include<string> using namespace std; int main(){ string str; while(getline(cin,str)) { string x; stringstream ss(str); while(ss>>x) cout<<x<<endl; } return 0;..
2021-03-20 09:27:02 343
原创 自我规定int string char[]
1.int—>string#include <string> string s = to_string(42);2.int—>char[] int n = 65535; char ss[10]; sprintf(ss, "%d", n);3.char[]->intint n;char str[100]="123"sscanf(str,"%d",&n);4.string->int#include <
2021-03-19 08:59:53 106
原创 lisp表达式求值
我今天才知道dev c++不能查看stl的内容,不然调试进行不下去。天啊,浪费时间!!!思想:三个栈,st1存符号,st2存左括号和数字,遇到右括号,st2弹出数字到stnum里,直到栈顶是左括号,然后把左括号弹出,然后弹出st1的符号,和stnum里的数字计算好了之后,再压入st2中#include <cstdio>#include <iostream>#include <stack>#include <queue>#include &..
2021-03-18 14:35:38 549
原创 识别星期几
我觉得我写的挺好,别人用char数组做的,这样做有空格都出不了数据,这样都能AC我居然不能,贴下来记录#include <cstdio>#include <iostream>using namespace std;int main(){ int flag=0;//我是第二个字符,默认不是 0不需要 1 需要 2从错误开始 char first; char wrongtogo; while(1){ char a; if(flag==2){ a..
2021-03-17 14:00:56 124
原创 装箱子问题
最开始用的很笨的方法,也想到了先装大的,测试结果也是对的,但是不能AC,肯定有细节错误,但是我的代码特别繁琐和冗长,我懒得修改,这个方法肯定不好。然后我去搜索,这个思想真不错!先贴上正确的,再贴不对的。#include <iostream>#include <cstdio>#include <cmath>using namespace std; int main(){ int a,b,c,d,e,f;//六类货品 int box;//箱子数字 in..
2021-03-17 13:01:01 595
原创 约瑟夫环,数学推导法
用的穷举法,让这些人一直报数,然后超时了,看别人AC的代码直接用的公式,我直接懵了,这是啥,怎么推出来的??先贴用数组的#include <cstdio>#include <iostream>using namespace std;int n;int main(){ while(1){ cin>>n; if(n==0) break; int pp[n]={0}; int num=n; int i=0; int..
2021-03-16 15:26:34 144
原创 归类c++不知道的函数
abs( )主要用于对求整数的绝对值 <cmath>fabs( )主要是求精度要求更高的double绝对值<cmath>__gcd(a,b) 求最大公约数 a,b可为int 和 long long <algorithm>
2021-03-16 09:04:47 76
原创 分解n!的质因数
一开始以为会出现有中间个数素数个数为0的情况,结果在纸上写了写发现,不会出现输出有0的情况,这道题比算法笔记的任意给一个数分解质因数的相对简单代码贴上,不知道能不能AC提供一下思路#include <cstdio>#include <cmath> const int maxprime=1000;//素数表开到1000,其实很大了 最大的数才100struct fact{ int num; int count;}; //结构体,质因数(数字,个数)bool ..
2021-03-15 09:54:03 359
原创 百度在线活体检测 wx.request写法
在线活体检测与其他的接口参数不同,在线活体检测要求传入数组,哭泣,查了好久js怎么传数组,试了JSON.stringify不行,直接写也不行其实接口文档里写的很清楚,我太笨蛋了!wx.request({ url: "https://aip.baidubce.com/rest/2.0/face/v3/faceverify?access_token=" + that.data.access_token, data:
2021-03-10 20:32:23 221
原创 微信小程序editor组件使用
对css不太熟悉,在微信代码片段上修改会出现字符往上溢的情况,我只摘取有用的代码写到我的项目没有这样的事情出现对着代码片段改了一下午,对于输入框展开折叠需要一定的计算和转化,toolbar上的图标可以加很多,但是功能要自己写...
2021-03-08 19:40:16 876 2
原创 idea lombok不生效
最近新换了电脑很多配置都要重新把项目移动到新电脑后发现lombok不生效解决办法:https://blog.csdn.net/qq_41582211/article/details/109816886?utm_medium=distribute.pc_relevant.none-task-blog-baidujs_utm_term-0&spm=1001.2101.3001.4242...
2021-03-03 10:19:50 248
原创 微信小程序真机调试 requestfail
文章:https://blog.csdn.net/weixin_43835425/article/details/103845860?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.control&dist_request_id=594bf617-4611-4eab-af52-bde2f391ae07&depth_1-utm_source=distribute.pc_re
2021-02-24 12:54:23 709
原创 微信小程序 scrollview高度自适应
本来设置scrollview 高度为950rpx换了多种机型发现大手机下面少了一截后面参考了网上的https://blog.csdn.net/jifashihan/article/details/105794067onReady:function(){ //scroll高度自适应 let windowHeight = wx.getSystemInfoSync().windowHeight // 屏幕的高度 let windowWidth = wx.getSystem
2021-02-23 19:04:49 226
原创 scroll-view bindscrolltoupper bindscrolltolower 不执行
当scroll-view设置为scroll-y把样式设置为 100%要是还是不执行看看是否确保内容区域的高度大于滚动区域本来我分页的是5条内容初次显示的时候有内容区域有空余改成6条之后上述功能正常使用...
2021-02-22 17:15:40 285
原创 1.26 整合springsecurity
1.我用的springboot2.x版本密码必须要加密,否则登录不会成功加密BCryptPasswordEncoder encode = new BCryptPasswordEncoder();System.out.println(encode.encode(user.getPassword()));先用这个笨办法把数据库里的密码转成加密的,然后在复制加密字符串到数据库(之后我要做一个用户名单导入)2.整合过程(1)b站https://www.bilibili.com/video
2021-01-26 23:06:44 146
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人