Java Date LocalDate LocalDateTime

Java Date LocalDate LocalDateTime

Java中常用时间类型 Date LocalDate LocalDateTime 在工作中使用很频繁,
但中间很多常用功能每次编写代码很繁琐,故而封装了以下三个工具类:

  • DateUtil 日期工具类
  • LocalDateUtil 新日期工具类
  • LocalDateTimeUtil 新日期工具类

用于日常使用。

Date 工具类

package cn.lihaozhe.util.date;import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.ZoneOffset;
import java.time.temporal.TemporalAdjusters;
import java.util.Date;
import java.util.List;
import java.util.TimeZone;
import java.util.concurrent.ThreadLocalRandom;
import java.util.stream.Collectors;/*** 日期工具类** @author 李昊哲* @version 1.0*/
public class DateUtil {/*** 默认时区*/private final static String timeZone = "Asia/Shanghai";/*** 默认时区为东 8 区*/private final static ZoneOffset zoneOffset = ZoneOffset.of("+8");/*** 默认时间字符串模板*/private final static String pattern = "yyyy-MM-dd HH:mm:ss";/*** 获取当前系统日期** @return 当前系统日期*/public static Date date() {return new Date();}/*** 获取当前系统日期日期字符串** @return 当前系统日期字符串*/public static String now() {return format(new Date());}/*** 获取当前系统日期日期字符串** @param pattern 日期格式化字符串模板* @return 当前系统日期字符串*/public static String now(String pattern) {return format(new Date(), pattern);}/*** 日期对象格式化为字符串** @param date Date对象* @return Date对象格式化后的日期字符串*/public static String format(Date date) {return format(date, pattern);}/*** 日期对象格式化为字符串** @param date    Date对象* @param pattern 日期格式化字符串模板* @return Date对象格式化后的日期字符串*/public static String format(Date date, String pattern) {if (date == null) {return null;}SimpleDateFormat dateFormat = new SimpleDateFormat(pattern);return dateFormat.format(date);}/*** 日期对象格式化为字符串** @param date     Date对象* @param pattern  日期格式化字符串模板* @param timeZone 时区* @return Date对象格式化后的日期字符串*/public static String format(Date date, String pattern, String timeZone) {SimpleDateFormat dateFormat = new SimpleDateFormat(pattern);dateFormat.setTimeZone(TimeZone.getTimeZone(timeZone));return dateFormat.format(date);}/*** 获取根据时间毫秒数获取日期** @param time 时间毫秒数* @return 日期*/public static Date parse(long time) {return new Date(time);}/*** 将日期字符串解析为日期对象** @param src 日期字符串* @return 日期字符串解析后日期对象* @throws ParseException 日期解析异常*/public static Date parse(String src) throws ParseException {return parse(src, pattern);}/*** 将日期字符串解析为日期对象** @param src     日期字符串* @param pattern 日期格式化字符串模板* @return 日期字符串解析后日期对象* @throws ParseException 日期解析异常*/public static Date parse(String src, String pattern) throws ParseException {return new SimpleDateFormat(pattern).parse(src);}/*** 将日期字符串解析为日期对象** @param src      日期字符串* @param pattern  日期格式化字符串模板* @param timeZone 时区* @return 日期字符串解析后日期对象* @throws ParseException 日期解析异常*/public static Date parse(String src, String pattern, String timeZone) throws ParseException {SimpleDateFormat dateFormat = new SimpleDateFormat(pattern);dateFormat.setTimeZone(TimeZone.getTimeZone(timeZone));return dateFormat.parse(src);}/*** 获取系统当前日期时间毫秒数** @return 当前时间毫秒数*/public static long getTime() {return getTime(new Date());}/*** 获取日期时间毫秒数** @param date 日期* @return 时间毫秒数*/public static long getTime(Date date) {return date.getTime();}/*** 时间补零占位** @param time 时间* @return 补零后的字符串*/public static String zeroCompensation(int time) {if (time < 10) {return "0" + time;}return String.valueOf(time);}/*** 生成范围的随机时间,位于[start,end)范围内 时间倒序排列** @param start 开始时间格式字符串* @param end   结束时间格式字符串* @param count 生成时间数量* @return 随机时间的集合*/public static List<Date> random(String start, String end, int count) throws ParseException {return random(parse(start), parse(end), count);}/*** 生成范围的随机时间,位于[start,end)范围内 时间倒序排列** @param start 开始时间* @param end   结束时间* @param count 生成时间数量* @return 随机时间的集合*/public static List<Date> random(Date start, Date end, int count) {return ThreadLocalRandom.current().longs(count, start.getTime(), end.getTime()).mapToObj(Date::new).sorted(Date::compareTo).collect(Collectors.toList());}/*** 生成范围的随机时间,位于[start,end)范围内 时间倒序排列** @param start 开始时间* @param end   结束时间* @param count 生成时间数量* @return 随机时间的集合*/public static List<LocalDate> random(LocalDate start, LocalDate end, int count) {List<Date> dateList = ThreadLocalRandom.current().longs(count, LocalDateUtils.getMilliSeconds(start), LocalDateUtils.getMilliSeconds(end)).mapToObj(Date::new).sorted(Date::compareTo).toList();return dateList.stream().map(DateUtils::toLocalDate).collect(Collectors.toList());}/*** 生成范围的随机时间,位于[start,end)范围内 时间倒序排列** @param start 开始时间* @param end   结束时间* @param count 生成时间数量* @return 随机时间的集合*/public static List<LocalDateTime> random(LocalDateTime start, LocalDateTime end, int count) {List<Date> dateList = ThreadLocalRandom.current().longs(count, LocalDateTimeUtils.getTime(start), LocalDateTimeUtils.getTime(end)).mapToObj(Date::new).sorted(Date::compareTo).toList();return dateList.stream().map(DateUtils::toLocalDateTime).collect(Collectors.toList());}/*** LocalDate 转 Date** @param localDate LocalDate对象* @return Date对象*/private static Date from(LocalDate localDate) {return from(localDate, zoneOffset);}/*** LocalDate 转 Date** @param localDate LocalDate对象* @param zoneId    zoneId* @return Date对象*/private static Date from(LocalDate localDate, String zoneId) {return from(localDate, ZoneOffset.of(zoneId));}/*** LocalDate 转 Date** @param localDate  LocalDate对象* @param zoneOffset 时区* @return Date对象*/private static Date from(LocalDate localDate, ZoneOffset zoneOffset) {return Date.from(localDate.atStartOfDay(zoneOffset).toInstant());}/*** LocalDateTime 转 Date** @param localDateTime LocalDateTime对象* @return Date对象*/private static Date from(LocalDateTime localDateTime) {return from(localDateTime, zoneOffset);}/*** LocalDateTime 转 Date** @param localDateTime LocalDateTime* @param zoneId        zoneId* @return Date对象*/private static Date from(LocalDateTime localDateTime, String zoneId) {return from(localDateTime, ZoneOffset.of(zoneId));}/*** LocalDateTime 转 Date** @param localDateTime LocalDateTime对象* @param zoneOffset    时区* @return Date对象*/private static Date from(LocalDateTime localDateTime, ZoneOffset zoneOffset) {return Date.from(localDateTime.toInstant(zoneOffset));}/*** Date 转 LocalDate** @param date Date对象* @return LocalDateTime对象*/public static LocalDate toLocalDate(Date date) {return toLocalDate(date, zoneOffset);}/*** Date 转 LocalDate** @param date   Date对象* @param zoneId 时区ID* @return LocalDateTime对象*/public static LocalDate toLocalDate(Date date, String zoneId) {return toLocalDate(date, ZoneOffset.of(zoneId));}/*** Date 转 LocalDate** @param date       Date对象* @param zoneOffset 时区* @return LocalDate对象*/public static LocalDate toLocalDate(Date date, ZoneOffset zoneOffset) {return date.toInstant().atOffset(zoneOffset).toLocalDate();}/*** Date 转 LocalDate** @param date Date对象* @return Date对象*/public static LocalDateTime toLocalDateTime(Date date) {return toLocalDateTime(date, zoneOffset);}/*** Date 转 LocalDate** @param date   Date对象* @param zoneId 时区ID* @return LocalDateTime对象*/public static LocalDateTime toLocalDateTime(Date date, String zoneId) {return toLocalDateTime(date, ZoneOffset.of(zoneId));}/*** Date 转 LocalDateTime** @param date       Date对象* @param zoneOffset 时区* @return LocalDateTime对象*/public static LocalDateTime toLocalDateTime(Date date, ZoneOffset zoneOffset) {return date.toInstant().atOffset(zoneOffset).toLocalDateTime();}/*** 获取某日期所在年份的第一天的日期** @param date 日期* @return 所在年份的第一天的日期* @throws ParseException ParseException*/public static Date firstDateOfYear(Date date) throws ParseException {return parse(format(date, "yyyy"), "yyyy");}/*** 获取某日期所在年份的最后一天的日期** @param date 日期* @return 所在年份的最后一天的日期* @throws ParseException ParseException*/public static Date lastDateOfYear(Date date) throws ParseException {return parse(format(date, "yyyy") + "-12-31 23:59:59", pattern);}/*** 获取某日期所在月份的第一天的日期** @param date 日期* @return 所在月份的第一天的日期* @throws ParseException ParseException*/public static Date firstDateOfMonth(Date date) throws ParseException {return parse(format(date, "yyyy-MM") + "-01", "yyyy-MM-dd");}/*** 获取某日期所在月份的最后一天的日期** @param date 日期* @return 所在月份的最后一天的日期* @throws ParseException ParseException*/public static Date lastDateOfMonth(Date date) throws ParseException {return from(toLocalDateTime(date).with(TemporalAdjusters.lastDayOfMonth()));}
}

LocalDate 工具类

package cn.lihaozhe.util.date;import java.time.*;
import java.time.format.DateTimeFormatter;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.concurrent.ThreadLocalRandom;/*** LocalDate 工具类** @author 李昊哲* @version 1.0*/
public class LocalDateUtil {/*** 日期格式化模板字符串*/private static final String formatter = "yyyy-MM-dd";/*** 默认时区为东 8 区*/private final static ZoneOffset zoneOffset = ZoneOffset.of("+8");/*** 将LocalDate格式化为默认的日期格式字符串 例如:1983-11-22** @param localDate 欲被格式化的日期* @return 根据日期格式字符串模板格式化的时间字符串*/public static String format(LocalDate localDate) {return format(localDate, formatter);}/*** 将LocalDate格式化为指定的日期格式字符串** @param localDate 欲被格式化的日期* @param formatter 日期字符串模板* @return 根据日期格式字符串模板格式化的时间字符串*/public static String format(LocalDate localDate, String formatter) {if (localDate == null) {return null;}return DateTimeFormatter.ofPattern(formatter).format(localDate);// return localDate.format(DateTimeFormatter.ofPattern(formatter));}/*** 根据默认日期字符串模板将日期格式字符串解析为LocalDate* 默认日期字符串模板 yyyy-MM-dd** @param text 日期格式字符串* @return LocalDate*/public static LocalDate parse(String text) {return parse(text, formatter);}/*** 根据日期字符串模板将日期格式字符串解析为LocalDate** @param text      日期格式字符串* @param formatter 日期格式字符串模板* @return LocalDate*/public static LocalDate parse(String text, String formatter) {return LocalDate.parse(text, DateTimeFormatter.ofPattern(formatter));}/*** Date类型的时间转为LocalDateTime类型的时间** @param date Date* @return LocalDate*/public static LocalDate from(Date date) {return from(date, zoneOffset);}/*** Date类型的时间转为LocalDateTime类型的时间** @param date   Date* @param zoneId 时区ID* @return LocalDate*/public static LocalDate from(Date date, String zoneId) {return from(date, ZoneOffset.of(zoneId));}/*** Date类型的时间转为LocalDateTime类型的时间** @param date Date* @param zone 时区* @return LocalDate*/public static LocalDate from(Date date, ZoneId zone) {return date.toInstant().atZone(zone).toLocalDate();}/*** Date类型的时间转为LocalDateTime类型的时间** @param date       Date* @param zoneOffset 时区* @return LocalDate*/public static LocalDate from(Date date, ZoneOffset zoneOffset) {return date.toInstant().atOffset(zoneOffset).toLocalDate();}/*** LocalDate 转 Date** @param localDate LocalDate对象* @return Date对象*/public static Date toDate(LocalDate localDate) {return toDate(localDate, zoneOffset);}/*** LocalDate 转 Date** @param localDate LocalDate对象* @param zoneId    zoneId* @return Date对象*/public static Date toDate(LocalDate localDate, String zoneId) {return toDate(localDate, ZoneOffset.of(zoneId));}/*** LocalDate 转 Date** @param localDate  LocalDate对象* @param zoneOffset 时区* @return Date对象*/public static Date toDate(LocalDate localDate, ZoneOffset zoneOffset) {return Date.from(localDate.atStartOfDay(zoneOffset).toInstant());}/*** LocalDateTime 转 LocalDateTime** @param localDate LocalDate对象* @return LocalDateTime对象*/public static LocalDateTime toLocalDateTime(LocalDate localDate) {return toLocalDateTime(localDate, zoneOffset);}/*** LocalDateTime 转 LocalDateTime** @param localDate LocalDate对象* @param zoneId    时区ID* @return LocalDateTime对象*/public static LocalDateTime toLocalDateTime(LocalDate localDate, String zoneId) {return toLocalDateTime(localDate, ZoneOffset.of(zoneId));}/*** LocalDateTime 转 LocalDateTime** @param localDate  LocalDate对象* @param zoneOffset 时区* @return LocalDateTime对象*/public static LocalDateTime toLocalDateTime(LocalDate localDate, ZoneOffset zoneOffset) {return localDate.atStartOfDay(zoneOffset).toLocalDateTime();}/*** 获取时间毫秒数** @return 时间毫秒数*/public static long getMilliSeconds() {return getMilliSeconds(LocalDate.now());}/*** 获取时间毫秒数** @param localDate LocalDate对象* @return 时间毫秒数*/public static long getMilliSeconds(LocalDate localDate) {return getMilliSeconds(localDate, zoneOffset);}/*** 获取时间毫秒数** @param localDate LocalDate对象* @param zoneId    时区ID* @return 时间毫秒数*/public static long getMilliSeconds(LocalDate localDate, String zoneId) {return getMilliSeconds(localDate, ZoneOffset.of(zoneId));}/*** 获取时间毫秒数** @param localDate  LocalDate对象* @param zoneOffset 时区* @return 时间毫秒数*/public static long getMilliSeconds(LocalDate localDate, ZoneOffset zoneOffset) {return toLocalDateTime(localDate, zoneOffset).toInstant(zoneOffset).toEpochMilli();}/*** 时间毫秒数转LocalDate 使用系统默认时区** @param milliSeconds 时间毫秒数* @return LocalDate*/public static LocalDate parseMilliSeconds(Long milliSeconds) {return parseMilliSeconds(milliSeconds, ZoneId.systemDefault());}/*** 时间毫秒数转LocalDate** @param milliSeconds 时间毫秒数* @param zoneId       时区* @return LocalDate*/public static LocalDate parseMilliSeconds(Long milliSeconds, ZoneId zoneId) {return Instant.ofEpochMilli(milliSeconds).atZone(zoneId).toLocalDate();}/*** 随机生成 LocalDate 集合** @param start 开始日期字符串 日期字符串格式 yyyy-MM-dd* @param end   结束日期字符串 日期字符串格式 yyyy-MM-dd* @param count 随机数量* @return LocalDate LocalDate集合*/public static List<LocalDate> random(String start, String end, int count) {return random(start, end, count, formatter);}/*** 随机生成 LocalDate 集合** @param start     开始日期字符串* @param end       结束日期字符串* @param count     随机数量* @param formatter 日期字符串模板* @return LocalDate LocalDate集合*/public static List<LocalDate> random(String start, String end, int count, String formatter) {return random(parse(start, formatter), parse(end, formatter), count);}/*** 随机生成 LocalDate 集合** @param start 开始日期* @param end   结束日期* @param count 随机数量* @return LocalDate LocalDate集合*/public static List<LocalDate> random(LocalDate start, LocalDate end, int count) {List<LocalDate> list = new ArrayList<>();for (int i = 0; i < count; i++) {list.add(parseMilliSeconds(ThreadLocalRandom.current().nextLong(getMilliSeconds(start), getMilliSeconds(end))));}if (!list.isEmpty()) {list.sort(LocalDate::compareTo);}return list;}
}

LocalDateTime 工具类

package cn.lihaozhe.util.date;import java.time.*;
import java.time.format.DateTimeFormatter;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.concurrent.ThreadLocalRandom;/*** LocalDateTime 工具类** @author 李昊哲* @version 1.0* @create 2023-10-18*/
public class LocalDateTimeUtil {/*** 时间格式化模板字符串*/private static final String formatter = "yyyy-MM-dd HH:mm:ss";/*** 默认时区为东 8 区*/private static final ZoneOffset zoneOffset = ZoneOffset.of("+8");/*** 将LocalDateTime格式化为时间指定的时间格式字符串** @param localDateTime 欲被格式化的时间* @return 根据时间格式字符串模板格式化的时间字符串*/public static String format(LocalDateTime localDateTime) {return format(localDateTime, formatter);}/*** 将LocalDateTime格式化为时间指定的时间格式字符串** @param localDateTime 欲被格式化的时间* @param formatter     时间字符串模板* @return 根据时间格式字符串模板格式化的时间字符串*/public static String format(LocalDateTime localDateTime, String formatter) {if (localDateTime == null) {return null;}return DateTimeFormatter.ofPattern(formatter).format(localDateTime);// return localDateTime.format(DateTimeFormatter.ofPattern(formatter));}/*** 根据时间字符串模板将时间格式字符串解析为LocalDateTime** @param text 时间字符串* @return LocalDateTime*/public static LocalDateTime parse(String text) {return parse(text, formatter);}/*** 根据时间字符串模板将时间格式字符串解析为LocalDateTime** @param text      时间字符串* @param formatter 时间字符串模板* @return LocalDateTime*/public static LocalDateTime parse(String text, String formatter) {return LocalDateTime.parse(text, DateTimeFormatter.ofPattern(formatter));}/*** Date类型的时间转为LocalDateTime类型的时间** @param date Date* @return LocalDate*/public static LocalDateTime from(Date date) {return from(date, zoneOffset);}/*** Date类型的时间转为LocalDateTime类型的时间** @param date   Date* @param zoneId 时区ID* @return LocalDate*/public static LocalDateTime from(Date date, String zoneId) {return from(date, ZoneOffset.of(zoneId));}/*** Date类型的时间转为LocalDateTime类型的时间** @param date Date* @param zone 时区* @return LocalDate*/public static LocalDateTime from(Date date, ZoneId zone) {return date.toInstant().atZone(zone).toLocalDateTime();}/*** Date类型的时间转为LocalDateTime类型的时间** @param date       Date* @param zoneOffset 时区* @return LocalDateTime*/public static LocalDateTime from(Date date, ZoneOffset zoneOffset) {return date.toInstant().atOffset(zoneOffset).toLocalDateTime();}/*** LocalDate 转 Date** @param localDateTime LocalDateTime对象* @return Date对象*/public static Date toDate(LocalDateTime localDateTime) {return toDate(localDateTime, zoneOffset);}/*** LocalDate 转 Date** @param localDateTime LocalDateTime对象* @param zoneId        zoneId* @return Date对象*/public static Date toDate(LocalDateTime localDateTime, String zoneId) {return toDate(localDateTime, ZoneOffset.of(zoneId));}/*** LocalDate 转 Date** @param localDateTime LocalDateTime对象* @param zoneOffset    时区* @return Date对象*/public static Date toDate(LocalDateTime localDateTime, ZoneOffset zoneOffset) {return Date.from(localDateTime.toInstant(zoneOffset));}/*** 获取当前时间毫秒数** @return 当前时间毫秒数*/public static long getTime() {return LocalDateTime.now(ZoneOffset.of("+8")).toInstant(ZoneOffset.of("+8")).toEpochMilli();}/*** 获取时间毫秒数** @param localDateTime 日期时间* @return 当前时间毫秒数*/public static long getTime(LocalDateTime localDateTime) {return localDateTime.toInstant(ZoneOffset.of("+8")).toEpochMilli();}/*** 时间毫秒数转LocalDateTime** @param milliseconds 时间毫秒数* @return LocalDateTime*/public static LocalDateTime parseMilliSeconds(Long milliseconds) {return LocalDateTime.ofInstant(Instant.ofEpochMilli(milliseconds), ZoneId.systemDefault());}/*** 时间毫秒数转LocalDateTime** @param milliseconds 时间毫秒数* @param zoneId       ZoneId* @return LocalDateTime*/public static LocalDateTime parseMilliSeconds(Long milliseconds, ZoneId zoneId) {return LocalDateTime.ofInstant(Instant.ofEpochMilli(milliseconds), zoneId);}/*** 随机生成 LocalDate 集合** @param start 开始时间字符串 时间字符串格式 yyyy-MM-dd HH:mm:ss* @param end   结束时间字符串 时间字符串格式 yyyy-MM-dd HH:mm:ss* @param count 随机数量* @return LocalDateTime 集合*/public static List<LocalDateTime> random(String start, String end, int count) {return random(start, end, count, formatter);}/*** 随机生成 LocalDateTime 集合** @param start     开始时间字符串* @param end       结束时间字符串* @param count     随机数量* @param formatter 时间字符串模板* @return LocalDateTime LocalDateTime集合*/public static List<LocalDateTime> random(String start, String end, int count, String formatter) {return random(parse(start, formatter), parse(end, formatter), count);}/*** 随机生成 LocalDateTime 集合** @param start 开始时间* @param end   结束时间* @param count 随机数量* @return LocalDateTime 集合*/public static List<LocalDateTime> random(LocalDateTime start, LocalDateTime end, int count) {List<LocalDateTime> list = new ArrayList<>();for (int i = 0; i < count; i++) {list.add(parseMilliSeconds(ThreadLocalRandom.current().nextLong(getTime(start), getTime(end))));}if (!list.isEmpty()) {list.sort(LocalDateTime::compareTo);}return list;}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/201918.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Python-条件判断(if语句详解)

条件判断 python代码执行从上到下&#xff0c;默认没有main函数 如果 否则 写法一&#xff1a;if if expression: do_something1 do_something2 ... next_something#一定会执行&#xff0c;和判断条件无关 if a > b:#执行语句1#执行语句2#执行语句3#... #执行语…

java第三十课

电商项目&#xff08;前台&#xff09;&#xff1a; 登录接口 注册接口后台&#xff1a; 注册审核&#xff1a;建一个线程类 注意程序中的一个问题。 这里是 5 条记录&#xff0c;2 条记录显示应该是 3 页&#xff0c;实际操作过程 有审核机制&#xff0c;出现了数据记录动态变…

【从删库到跑路 | MySQL数据库总结篇】JDBC编程

个人主页&#xff1a;兜里有颗棉花糖 欢迎 点赞&#x1f44d; 收藏✨ 留言✉ 加关注&#x1f493;本文由 兜里有颗棉花糖 原创 收录于专栏【MySQL学习专栏】&#x1f388; 本专栏旨在分享学习MySQL的一点学习心得&#xff0c;欢迎大家在评论区讨论&#x1f48c; 目录 一、前言…

共建共创 | 紫光展锐-中国电信“终端测试与创新联合实验室”正式成立

近日&#xff0c;紫光展锐携手中国电信正式成立“终端测试与创新联合实验室”&#xff0c;这标志着紫光展锐在功能、协议、互操作性等测试方面的创新能力和持续发展能力获得认可&#xff0c;为进一步提升通信技术&#xff0c;助推终端厂商产品加速上市奠定了坚实的基础。 2023年…

网络之路26:STP生成树协议

正文共&#xff1a;2222 字 19 图&#xff0c;预估阅读时间&#xff1a;3 分钟 目录 网络之路第一章&#xff1a;Windows系统中的网络 0、序言 1、Windows系统中的网络1.1、桌面中的网卡1.2、命令行中的网卡1.3、路由表1.4、家用路由器 网络之路第二章&#xff1a;认识企业设备…

农产品加工行业分析:我国产业总产值共计7.17万亿元

农产品加工是用物理、化学和生物学的方法&#xff0c;将农业的主、副产品制成各种食品或其他用品的一种生产活动。是农产品由生产领域进入消费领域的一个重要环节。主要包括粮食加工、饲料加工、榨油、酿造、制糖、制茶、烤烟、纤维加工以及果品、蔬菜、畜产品、水产品等的加工…

Windows创建服务(.NET8)

windows服务 Windows服务是一种在Windows操作系统中运行的后台程序&#xff0c;用于在系统启动时启动并在系统关闭时关闭。这些服务可以是Microsoft自己的服务&#xff0c;也可以是第三方软件的服务。它们在后台运行&#xff0c;通常不需要交互式用户界面。 Windows服务通常用…

Windows(Microsoft)win电脑装Xcode方法

你想在你的Windows电脑上体验和使用苹果的Xcode进行应用打包。遗憾的是&#xff0c;Xcode官方只支持macOS操作系统&#xff0c;但别担心&#xff0c;我们有替代方案可以让你在Windows环境下进行iOS应用的开发和打包。接下来我将指导你如何实现这一目标。 图片来源&#xff1a;W…

Linux中的网络配置

本章主要介绍网络配置的方法 网络基础知识查看网络信息图形化界面修改通过配置文件修改 1.1 网络基础知识 一台主机需要配置必要的网络信息&#xff0c;才可以连接到互联网。需要的配置网络信息包括IP、 子网掩码、网关和 DNS 1.1.1 IP地址 在计算机中对IP的标记使用的是3…

协议栈的内部结构

上层会向下层逐层委派工作。 最上面的部分是网络应用程序&#xff0c;它们会将收发数据等工作委派给下层的部分来完成。尽管不同的应用程序收发的数据内容不同&#xff0c;但收发数据的操作是共通的。 应用程序的下面是Socket库&#xff0c;其中包括解析器&#xff0c;解析器…

浏览器的favicon.icon 消失不见解决方案

工作中遇到了本地项目的favicon.icon正常展示&#xff0c;正式项目favicion.icon消失不见&#xff1f; 这是由于浏览器缓存问题&#xff0c;有时会显示旧版本&#xff0c;在强制清除浏览器缓存后&#xff0c;就能展示最新上传的favicon图标。 浏览器制清除浏览器缓存后仍然不…

Java画爱心

Java画爱心代码&#xff0c;每个人都可以被需要 效果图 源代码 package com.example.test; import java.awt.Color; import java.awt.Font; import java.awt.Graphics; import java.awt.Image; import java.awt.Toolkit; import javax.swing.JFrame; class Cardioid extend…

使用cross-env兼容windows和linux环境的nodejs变量

文章目录 前言一、windows使用二、linux环境三、区别相同点不同点 四、使用cross-env兼容项目安装cross-env使用 总结如有启发&#xff0c;可点赞收藏哟~ 前言 由于办公和家里的开发环境不同&#xff08;windows和linux&#xff09; 在处理nodejs项目的时候&#xff0c;脚本设…

关注!6岁娃眼外伤后头晕、呕吐,竟是这里骨折了……

孩子们天性活泼好动&#xff0c;总是爱跑爱跳打打闹闹&#xff0c;加上他们机体协调控制能力差&#xff0c;磕磕碰碰情况时有发生&#xff0c;可能导致外伤发生。 前不久&#xff0c;6岁的萱萱(化名)在学校上体育课时&#xff0c;不慎与同学相撞&#xff0c;导致右眼被撞伤。老…

Linux 正则表达式

内容概述 1 文本编辑工具之神 VIM 1.1 vi 和 vim 简介 在 Linux 中我们经常编辑修改文本文件&#xff0c;即由 ASCII Unicode 或者其他编码的纯文字的文件。之前介绍过的 nano&#xff0c;实际工具中我们使用更为专业&#xff0c;功能强大的工具 文本编辑种类&#xff1a; vi…

神经网络模型流程与卷积神经网络实现

神经网络模型流程 神经网络模型的搭建流程&#xff0c;整理下自己的思路&#xff0c;这个过程不会细分出来&#xff0c;而是主流程。 在这里我主要是把整个流程分为两个主流程&#xff0c;即预训练与推理。预训练过程主要是生成超参数文件与搭设神经网络结构&#xff1b;而推理…

基于OpenCV+CNN+IOT+微信小程序智能果实采摘指导系统——深度学习算法应用(含pytho、JS工程源码)+数据集+模型(一)

目录 前言总体设计系统整体结构图系统流程图 运行环境Python环境TensorFlow 环境Jupyter Notebook环境Pycharm 环境 相关其它博客工程源代码下载其它资料下载 前言 本项目基于Keras框架&#xff0c;引入CNN进行模型训练&#xff0c;采用Dropout梯度下降算法&#xff0c;按比例…

JavaScript 流程控制

JavaScript 流程控制 通过一些特定的语句&#xff0c;让程序按照我们需要的方式顺序执行、选择执行或者重复执行 顺序结构 按照位置&#xff0c;从上往下一条语句一条语句执行 选择结构 按照给定的一个或者多个条件选择某些语句执行某些语句不执行 分支结构 单路分支 根据某个…

【Vue】vue整合element

上一篇&#xff1a; vue项目的创建 https://blog.csdn.net/m0_67930426/article/details/134816155 目录 整合过程 使用&#xff1a; 整合过程 项目创建完之后&#xff0c;使用编译器打开项目 在控制器里输入如下命令 npm install element-ui 如图表示安装完毕 然后在…

报错解决:Fatal error: ‘THC/THC.h‘: No such file or directory

报错解决&#xff1a;Fatal error: THC/THC.h: No such file or directory 报错原因解决方法总结参考文献 报错 博主的软硬件环境&#xff08;供参考&#xff09;&#xff1a; LinuxNVIDIA GeForce RTX 3090CUDA 11.6gcc (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0Pytorch&#…