上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: 什么是Git git是一种版本同步工具;实际项目开发中,涉及到多人的团队性质的协同开发; Git的三种状态 现在请注意,如果你希望后面的学习更顺利,请记住下面这些关于 Git 的概念。 Git 有三种状态,你的文件可能 处于其中之一: 已提交(committed)、已修改(modified) 和 已 阅读全文
posted @ 2022-09-04 22:26 岁月记忆 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 方法一: Scanner input = new Scanner(System.in); Calendar cal=Calendar.getInstance(); System.out.println("请输入年:"); int year=input.nextInt(); System.out.pr 阅读全文
posted @ 2022-07-25 09:38 岁月记忆 阅读(424) 评论(0) 推荐(0) 编辑
摘要: drop table if exists score; create table score( sc_id int primary key not null auto_increment, sc_exam int not null ); insert into score values(1,89), 阅读全文
posted @ 2022-07-06 15:17 岁月记忆 阅读(708) 评论(0) 推荐(0) 编辑
摘要: 1、一个一个的接收: @RequestMapping(value = "/list",method = RequestMethod.GET) public Result list(@RequestParam("query1") String query1, @RequestParam("query2 阅读全文
posted @ 2022-06-23 11:30 岁月记忆 阅读(1316) 评论(0) 推荐(0) 编辑
摘要: package com.ruoyi.common.utils; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.LineNumber 阅读全文
posted @ 2022-06-22 17:59 岁月记忆 阅读(367) 评论(0) 推荐(0) 编辑
摘要: 请求地址必须为ip+端口的形式如:http://192.168.0.104:8080/app/getMac 1、controller 代码: /** * 获取mac */ @GetMapping("/getMac") public AjaxResult getmac(){ String macs = 阅读全文
posted @ 2022-06-21 18:04 岁月记忆 阅读(1433) 评论(0) 推荐(0) 编辑
摘要: SELECT p.id, p.apply_area_ids, GROUP_CONCAT(area.`name`) as apply_area_names FROM ap_product p LEFT JOIN ap_product_company pc on pc.id = p.product_co 阅读全文
posted @ 2022-06-16 14:51 岁月记忆 阅读(881) 评论(0) 推荐(0) 编辑
摘要: import java.text.DecimalFormat; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Random; /** * 获取随机数 * * 阅读全文
posted @ 2022-06-11 16:48 岁月记忆 阅读(35) 评论(0) 推荐(0) 编辑
摘要: import org.apache.commons.lang3.StringUtils; import java.util.regex.Pattern; /** * 手机号校验工具类 */ public class PhoneCheckUtil { /** * 中国电信号码格式验证 手机段: 133 阅读全文
posted @ 2022-06-08 17:52 岁月记忆 阅读(259) 评论(0) 推荐(0) 编辑
摘要: import java.util.concurrent.ThreadLocalRandom; public class NameUtil { // 头部 private static final String[] headerNameArray = new String[]{"快乐的", "冷静的" 阅读全文
posted @ 2022-06-08 17:13 岁月记忆 阅读(534) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页