Failed to execute goal on project apps-customize: Could not resolve dependencies for project The following artifacts could not be resolved:
摘要:Failed to execute goal on project apps-customize: Could not resolve dependencies for project com.xxx:apps-xxx:jar:836583502xxx0-standard-Vxxx-release_
阅读全文
posted @
2022-12-14 15:43
时间完全不够用啊
编辑
范数
摘要:范数,是具有“长度”概念的函数。在线性代数、泛函分析及相关的数学领域,范数是一个函数,是矢量空间内的所有矢量赋予非零的正长度或大小。半范数可以为非零的矢量赋予零长度。 向量范数 1-范数:即向量元素绝对值之和,matlab调用函数norm(x, 1) 。 2-范数:Euclid范数(欧几里得范数,常
阅读全文
posted @
2022-12-07 14:45
时间完全不够用啊
编辑
MD5一般加密方法
摘要:// MD5加密 private static String standardMD5(String s){ char[] hexDigits = new char[]{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', '
阅读全文
posted @
2022-12-06 15:28
时间完全不够用啊
编辑
input标签设置了单选还是能多选
摘要:给input标签添加name="xxx"属性即可: 性别:<input type="radio" name="sex" value="girl">女 <input type="radio" name="sex" value="boy" checked="checked">男
阅读全文
posted @
2022-12-02 21:51
时间完全不够用啊
编辑
将input标签设置为圆形选择按钮并添加样式
摘要:代码: <!doctype html> <html> <head> <meta charset="UTF-8"> <title>圆形按钮</title> </head> <style type="text/css"> input[type="checkbox"] { width: 1.2rem; h
阅读全文
posted @
2022-12-02 15:29
时间完全不够用啊
编辑
java之io写入内容和删除
摘要:简单写入: File file = new File("G:\\870_2_Files\\Test\\os.txt"); String s = "123"; OutputStream os = Files.newOutputStream(file.toPath()); os.write(s.getB
阅读全文
posted @
2022-12-02 11:05
时间完全不够用啊
编辑
word添加水印工具类
摘要:需要添加一个jar包(百度就行很多): package com.seeyon.apps.watermark.utils; import com.itextpdf.text.pdf.PdfContentByte; import com.spire.doc.*; import com.spire.doc
阅读全文
posted @
2022-12-02 10:57
时间完全不够用啊
编辑
前端屏蔽鼠标右键和禁止复制
摘要://屏蔽鼠标右键 window.document.oncontextmenu=function(){ return false; } //禁止用户选择并复制数据 window.document.onselectstart=function(){ return false; }
阅读全文
posted @
2022-12-01 10:57
时间完全不够用啊
编辑