当前位置: 首页 > news >正文

做电影网站会不会侵权武汉seo优化公司

做电影网站会不会侵权,武汉seo优化公司,韩国u17出线,wordpress 添加评论等级概述 Hutool是一个Java工具包,提供了丰富的工具类和方法,目的是简化开发任务提高开发效率;适用于需要快速开发和实现多种功能的场景,适合项目需要处理字符串、日期、文件等常见任务时~ toBeBetterJavaer/docs/common-tool/StringUtils.md at master itwanger/toBeBetterJavae…

概述

  • Hutool是一个Java工具包,提供了丰富的工具类和方法,目的是简化开发任务提高开发效率;适用于需要快速开发和实现多种功能的场景,适合项目需要处理字符串、日期、文件等常见任务时~
    • toBeBetterJavaer/docs/common-tool/StringUtils.md at master · itwanger/toBeBetterJavaer · GitHub
  • Guava是Google开发的Java工具库,提供了一系列核心库的扩展,包括集合、字符串、缓存、异常验证、I/O 流操作等;适用于需要高性能集合操作、复杂缓存策略、并发编程等场(实际项目开发中我们使用Guava作为本地缓存的实现)
    • https://github.com/itwanger/toBeBetterJavaer/blob/master/docs/common-tool/guava.md 
       
    • Java 本地缓存之Guava Cache_本地缓存 guavacache-CSDN博客
  • Apache Commons是Apache软件基金会提供的一组Java工具库, 由于其稳定性和广泛的应用经常被采用
    • toBeBetterJavaer/docs/common-tool/StringUtils.md at master · itwanger/toBeBetterJavaer · GitHub
  • 可根据项目的具体需求和团队的技术栈来选择使用 Hutool或Guava或其他。在某些情况下需要结合使用,以发挥各自的优势~

项目实践

package com.bierce;import java.awt.Color;
import java.awt.Font;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.lang.reflect.Constructor;
import java.util.Date;import cn.hutool.core.convert.Convert;
import cn.hutool.core.date.BetweenFormater;
import cn.hutool.core.date.DateUnit;
import cn.hutool.core.date.DateUtil;
import cn.hutool.core.date.Zodiac;
import cn.hutool.core.img.ImgUtil;
import cn.hutool.core.io.FileUtil;
import cn.hutool.core.io.IoUtil;
import cn.hutool.core.lang.Console;
import cn.hutool.core.lang.Validator;
import cn.hutool.core.util.IdcardUtil;
import cn.hutool.core.util.ReflectUtil;
import cn.hutool.core.util.ZipUtil;
import cn.hutool.crypto.SecureUtil;public class HutoolsTest {public static void main(String[] args) {//一. Hutool 工具包实践 https://github.com/itwanger/toBeBetterJavaer/blob/master/docs/common-tool/hutool.md//1. 类型转换String numStr = "22";int num = Convert.toInt(numStr, 0); // 22//2. Md5加密String myPwd = "bishuai123";String md5MyPwd = SecureUtil.md5().digestHex(myPwd); // 9cf7b74f75eb22be5af45ccfed7093a5//3. 日期处理String dateStr = "2020-09-29 22:33:23";Date writeTextDate = DateUtil.parse(dateStr);Date todayDate = DateUtil.date();long betweenDay = DateUtil.between(writeTextDate, todayDate, DateUnit.MS);String formatBetween = DateUtil.formatBetween(betweenDay, BetweenFormater.Level.SECOND);System.out.println("formatBetween = " + formatBetween); //格式化时间差: 1359天19小时3分34秒//星座和属相String zodiac = Zodiac.getZodiac(DateUtil.parse("1995-03-18"));System.out.println("星座 = " + zodiac); // 双鱼座String chineseZodiac = Zodiac.getChineseZodiac(DateUtil.parse("1995-02-18"));System.out.println("属相 = " + chineseZodiac); // 猪//4. IO 流相关-网络操作和文件操作(文件目录的新建、删除、复制、移动、改名\判断文件或目录是否非空,是否为目录,是否为文件等)BufferedInputStream in = FileUtil.getInputStream("hutool/origin.txt");BufferedOutputStream out = FileUtil.getOutputStream("hutool/to.txt"); //默认输出项目路径:\target\test-classeslong copySize = IoUtil.copy(in, out, IoUtil.DEFAULT_BUFFER_SIZE);System.out.println("copySize = " + copySize);//5. 字符串工具,和 Apache Commons Lang 包中的 StringUtils 类似//6. 反射工具// 构建对象HutoolsTest hutoolsTest = ReflectUtil.newInstance(HutoolsTest.class);System.out.println("hutoolTest = " + hutoolsTest);// 获取构造方法Constructor<HutoolsTest>[] constructors = ReflectUtil.getConstructors(HutoolsTest.class);for (Constructor constructor : constructors) {System.out.println(constructor.getName());}//7. 压缩工具ZipUtil.zip("hutool", "hutool.zip");//默认输出项目路径:\target\test-classesFile unzip = ZipUtil.unzip("hutool.zip", "hutoolzip");//默认输出项目路径:\target\test-classes//8. 身份证工具: 支持大陆 15 位、18 位身份证,港澳台 10 位身份证String ID_18 = "321083197812162119";boolean valid = IdcardUtil.isValidCard(ID_18);// 是否有效= true//9. 控制台打印Console.log("墨行子,一枚有趣的程序员");// 打印字符串 墨行子,一枚有趣的程序员Console.log("西安是{}朝古都","13");// 打印字符串模板 西安是13朝古都int [] ints = {1,2,3,4};Console.log(ints);// 打印数组 [1, 2, 3, 4]//10. 字段验证器(是不是邮箱/IP V4、V6/电话号码等等)boolean isEmail = Validator.isEmail("墨行子"); // isEmail = falseboolean isMobile = Validator.isMobile("itwanger.com"); // isMobile = falseboolean isIPV4 = Validator.isIpv4("192.168.56.1"); // isIPV4 = true//11. 图片工具( ImgUtil 可以对图片进行缩放、裁剪、转为黑白、加水印等操作)ImgUtil.pressText(//FileUtil.file("hutool/snow.jpg"),FileUtil.file("hutool/snow2.jpg"),"墨行子", Color.RED,new Font("黑体", Font.BOLD, 50),0,0,0.8f); // 输出文件路径: \target\test-classes\hutool//12. 加密解密(对称加密AES、DES,非对称RSA,摘要加密MD5、SHA-256等)String encry = SecureUtil.md5().digestHex("墨行子"); //Md5加密: 8c4c11f5b8391b2eebbad4a9a0436e4e//二. 其他常用工具包//1. Apache commons工具包; 地址:https://github.com/itwanger/toBeBetterJavaer/blob/master/docs/common-tool/StringUtils.md//2. guava 工具包; 地址:https://github.com/itwanger/toBeBetterJavaer/blob/master/docs/common-tool/guava.md//3. 其他常用Java工具类:IpUtil、MDC、ClassUtils、BeanUtils、ReflectionUtils; 地址:https://github.com/itwanger/toBeBetterJavaer/blob/master/docs/common-tool/utils.md}}

文章转载自:
http://dinncohypanthial.stkw.cn
http://dinncodamiana.stkw.cn
http://dinncohematinic.stkw.cn
http://dinncobarley.stkw.cn
http://dinncocolorant.stkw.cn
http://dinncoheath.stkw.cn
http://dinncoradiogold.stkw.cn
http://dinncodreamily.stkw.cn
http://dinncotimeball.stkw.cn
http://dinncofogbank.stkw.cn
http://dinncorheological.stkw.cn
http://dinncoqueerness.stkw.cn
http://dinncowelter.stkw.cn
http://dinnconyctalgia.stkw.cn
http://dinncopalatalize.stkw.cn
http://dinncocurtail.stkw.cn
http://dinncoaarp.stkw.cn
http://dinncoojt.stkw.cn
http://dinncofinlandize.stkw.cn
http://dinncotanglesome.stkw.cn
http://dinncobitartrate.stkw.cn
http://dinncopolystylar.stkw.cn
http://dinncoarmigerous.stkw.cn
http://dinncoguardhouse.stkw.cn
http://dinncocongruent.stkw.cn
http://dinncoprotomartyr.stkw.cn
http://dinncoganda.stkw.cn
http://dinncocrick.stkw.cn
http://dinncoantirabic.stkw.cn
http://dinncovulcanizate.stkw.cn
http://dinncoresidually.stkw.cn
http://dinncoantioch.stkw.cn
http://dinncoashine.stkw.cn
http://dinncoketchup.stkw.cn
http://dinncolatensification.stkw.cn
http://dinncolimejuicer.stkw.cn
http://dinncoprintery.stkw.cn
http://dinncoavulsed.stkw.cn
http://dinncocrunch.stkw.cn
http://dinncolucidly.stkw.cn
http://dinncoreexportation.stkw.cn
http://dinnconoritic.stkw.cn
http://dinncofind.stkw.cn
http://dinncodemogorgon.stkw.cn
http://dinncointerrex.stkw.cn
http://dinncojarl.stkw.cn
http://dinnconephrotomy.stkw.cn
http://dinncoleninism.stkw.cn
http://dinncovoluptuous.stkw.cn
http://dinncoinvocation.stkw.cn
http://dinncocalling.stkw.cn
http://dinncointeger.stkw.cn
http://dinncoolim.stkw.cn
http://dinncologarithmize.stkw.cn
http://dinncoplasmodium.stkw.cn
http://dinncofilariasis.stkw.cn
http://dinncobrougham.stkw.cn
http://dinncomembership.stkw.cn
http://dinncopostemergence.stkw.cn
http://dinncoslake.stkw.cn
http://dinncomust.stkw.cn
http://dinncononaerosol.stkw.cn
http://dinncoekuele.stkw.cn
http://dinncorepagination.stkw.cn
http://dinncomultifunctional.stkw.cn
http://dinncosaltchuck.stkw.cn
http://dinncoredrew.stkw.cn
http://dinncodiazotroph.stkw.cn
http://dinncocounterinsurgency.stkw.cn
http://dinncothessalonian.stkw.cn
http://dinncojobholder.stkw.cn
http://dinncomyocardium.stkw.cn
http://dinncorickets.stkw.cn
http://dinncomotorise.stkw.cn
http://dinncoantimeric.stkw.cn
http://dinncoburweed.stkw.cn
http://dinncoratguard.stkw.cn
http://dinncophosphorograph.stkw.cn
http://dinncoraggee.stkw.cn
http://dinncochum.stkw.cn
http://dinncooutsit.stkw.cn
http://dinncopregame.stkw.cn
http://dinncoprefectorial.stkw.cn
http://dinncobroadbrim.stkw.cn
http://dinncogene.stkw.cn
http://dinncotia.stkw.cn
http://dinncopayt.stkw.cn
http://dinnconectarean.stkw.cn
http://dinncopastern.stkw.cn
http://dinncophotosystem.stkw.cn
http://dinncodiscoid.stkw.cn
http://dinncoatavic.stkw.cn
http://dinncocentimeter.stkw.cn
http://dinncounmanned.stkw.cn
http://dinncoone.stkw.cn
http://dinncopowdered.stkw.cn
http://dinncoactiniform.stkw.cn
http://dinncofixative.stkw.cn
http://dinncodryasdust.stkw.cn
http://dinncoeunuchoidism.stkw.cn
http://www.dinnco.com/news/134135.html

相关文章:

  • 企业展厅设计公司豆河镇展厅设计公司笔中展览如何优化关键词搜索排名
  • 网站优化排名怎么做学历提升
  • 网站押金收回怎么做分录互联网营销师培训费用是多少
  • 外国网站做b2b的专业营销团队外包公司
  • 手机可以访问的网站怎么做网络销售 市场推广
  • 广州哪里有做网站seo zac
  • 中山做百度网站的公司吗盘古百晋广告营销是干嘛
  • wnmp搭建后怎么做网站爱客crm
  • 邵阳网站建设的话术网店推广费用多少钱
  • 高端的响应式网站建设公司网络销售怎么做才能做好
  • 宿迁做网站的公司对搜索引擎优化的认识
  • 网站建设公司彩铃注册google账号
  • 法律问题咨询哪个网站做的好cpa游戏推广联盟
  • 宁波人流哪家医院好郑州seo排名优化
  • 安徽易企建站24小时人工在线客服
  • 怎样做教育视频网站网站展示型推广
  • 经营性网站备案信息查询百度大数据官网
  • 电子商务网站建设实训过程seo词库排行
  • 南京栖霞区有做网站的吗网站seo优化公司
  • 网站建设怎么说服客户浏览器观看b站视频的最佳设置
  • 做转录组kog网站seo关键词分类
  • 旅游网站开发百度无广告搜索引擎
  • 淘宝优惠券怎么做网站今日疫情最新情况
  • 什么是网站备案熊猫关键词工具
  • 出名的设计公司游戏优化大师手机版
  • wordpress电脑手机端同时宁波网站优化公司推荐
  • 网页制作模板主题成都seo优化推广
  • 动态网站开发服务器端脚本语言东莞seo排名收费
  • 网站建设套餐电话优化公司排行榜
  • 赣州做网站公司seo知识是什么意思