[TOC]## 1. 文件上传> [doc](https://www.layui.com/doc/modules/upload.html)```html upload模块快速使用 上传图片``` ...
分类:
其他好文 时间:
2020-07-26 00:53:31
阅读次数:
80
题记:因为老板要求将过去一年内系统中的订单合同内容进行打印,并按月进行整理成纸质文件。合同在系统(web系统)中以html形式显示,打印单份都是在网页中右键打印,订单量上千份,每笔订单有两份合同,如果手动打印的话,需要打印2000+次,因为还要按月份进行整理,还要页码,所以先要保存成PDF(因为有电 ...
分类:
Web程序 时间:
2020-07-26 00:49:52
阅读次数:
153
方法一: int rowHandle = gridView.LocateByValue("CustomerID", 12345); if(rowHandle != DevExpress.XtraGrid.GridControl.InvalidRowHandle) gridView.FocusedRo ...
分类:
其他好文 时间:
2020-07-26 00:26:45
阅读次数:
82
##题面 he length of the longest common prefix of two strings s=s1s2…sn and t=t1t2…tm is defined as the maximum integer k (0≤k≤min(n,m)) such that s1s2…s ...
分类:
其他好文 时间:
2020-07-26 00:15:56
阅读次数:
106
多张图下载,下载图片,跨域的不可以 download.js源码 //download.js v4.21, by dandavis; 2008-2018. [MIT] see http://danml.com/download.html for tests/usage // v1 landed a F ...
分类:
其他好文 时间:
2020-07-26 00:12:41
阅读次数:
64
<!DOCTYPE html> <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro"> <head> <th:block th:include="i ...
分类:
其他好文 时间:
2020-07-25 23:23:14
阅读次数:
72
1 using System; 2 using System.Net; 3 using System.IO; 4 using System.Text; 5 using System.Text.RegularExpressions; 6 using System.Net.Security; 7 usi ...
分类:
其他好文 时间:
2020-07-25 23:19:26
阅读次数:
198
#1.run 1.下载附件解压得到run.exe,运行发现是word,显示error!!。直接解压run.exe,得到New Microsoft Word Document.docx和run.exe。运行run.exe,得到tif文件,查看二进制,在最后发现run->njCp1HJBPLVTxcMh ...
分类:
其他好文 时间:
2020-07-25 11:28:14
阅读次数:
108
拆分字符串:张三:20|李四:40|王五:40这个可以使用两次分割,第一次使用 | 分割,放到arr数组里,然后使用循环对arr[i]进行使用:分割 1 public static void main(String[] args) { 2 String str = "张三:20|李四:40|王五:4 ...
分类:
其他好文 时间:
2020-07-25 10:01:22
阅读次数:
90
静态初始化是直接创建加赋值 动态初始化,具有默认值//不赋值直接打印会打印出数组类型的默认值 int,byte,short,long=0 double,float=0.0 char=\u0000 boolean=false String=null(引用类型) 数组下标越界异常 数组长度,arr.le ...
分类:
编程语言 时间:
2020-07-25 09:59:50
阅读次数:
84