优秀的项目地址记录
摘要:Spring boot 后台管理框架:https://doc.el-admin.xin/ github地址 前端:https://github.com/elunez/eladmin-web 后端:https://github.com/elunez/eladmin
阅读全文
posted @
2020-11-09 15:32
风又奈何
阅读(205)
推荐(0) 编辑
IDEA常规配置,看完这一篇就可以满足基本配置
摘要:本人就是根据这几篇进行配置的,亲测可用 https://www.cnblogs.com/it-tsz/p/11605693.html https://www.jianshu.com/p/64bbdfe4abf1 https://blog.csdn.net/u013412790/article/det
阅读全文
posted @
2020-11-09 11:20
风又奈何
阅读(422)
推荐(0) 编辑
jna调用c++的dll
摘要:import java.util.ArrayList; import java.util.List; import com.sun.jna.Structure; public class MyStructure extends Structure { public static class ByReference extends MyStructure implements Str...
阅读全文
posted @
2018-12-28 15:45
风又奈何
阅读(1283)
推荐(0) 编辑
OAuth 2.0
摘要:OAuth 2.0文档 目录 [隐藏] 1、OAuth 2.0 简介 2、获取Access Token的流程 2.1、使用Authorization Code获取Access Token 2.1.1、简介 2.1.2、获取Authorization Code 2.1.3、通过Authorizatio
阅读全文
posted @
2017-07-13 09:36
风又奈何
阅读(428)
推荐(0) 编辑
java String 中替换"\"为"\\"
摘要:表示路径的字符串 c:\work\test\afd.out, 要形成 c:\\work\\test\\afd.out 用 String str = strBsf.replaceAll("\\", "\\\\");会出错不可行。 原因是replaceAll参数是正则表达式,"\\"同样表示"\"。 要
阅读全文
posted @
2017-07-12 21:55
风又奈何
阅读(6196)
推荐(2) 编辑
java 集合中将元素倒序排列
摘要:方法一:实现Comparable接口排序package collsort.comparable; package com.cvicse.sort.comparable;public class Cat implements Comparable<Cat> {private int age;priva
阅读全文
posted @
2016-01-27 15:49
风又奈何
阅读(2637)
推荐(0) 编辑
Java中判断字符串中相同字符的个数
摘要:publicstaticintcountStr(Stringstr1,Stringstr2){intcounter=0;if(str1.indexOf(str2)==-1){return0;}while(str1.indexOf(str2)!=-1){counter++;str1=str1.subs...
阅读全文
posted @
2015-10-16 11:05
风又奈何
阅读(4709)
推荐(0) 编辑