摘要:
什么是Git git是一种版本同步工具;实际项目开发中,涉及到多人的团队性质的协同开发; Git的三种状态 现在请注意,如果你希望后面的学习更顺利,请记住下面这些关于 Git 的概念。 Git 有三种状态,你的文件可能 处于其中之一: 已提交(committed)、已修改(modified) 和 已 阅读全文
摘要:
方法一: Scanner input = new Scanner(System.in); Calendar cal=Calendar.getInstance(); System.out.println("请输入年:"); int year=input.nextInt(); System.out.pr 阅读全文
摘要:
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), 阅读全文
摘要:
1、一个一个的接收: @RequestMapping(value = "/list",method = RequestMethod.GET) public Result list(@RequestParam("query1") String query1, @RequestParam("query2 阅读全文
摘要:
package com.ruoyi.common.utils; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.LineNumber 阅读全文
摘要:
请求地址必须为ip+端口的形式如:http://192.168.0.104:8080/app/getMac 1、controller 代码: /** * 获取mac */ @GetMapping("/getMac") public AjaxResult getmac(){ String macs = 阅读全文
摘要:
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 阅读全文
摘要:
import java.text.DecimalFormat; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Random; /** * 获取随机数 * * 阅读全文
摘要:
import org.apache.commons.lang3.StringUtils; import java.util.regex.Pattern; /** * 手机号校验工具类 */ public class PhoneCheckUtil { /** * 中国电信号码格式验证 手机段: 133 阅读全文
摘要:
import java.util.concurrent.ThreadLocalRandom; public class NameUtil { // 头部 private static final String[] headerNameArray = new String[]{"快乐的", "冷静的" 阅读全文