上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页
摘要: private static String byte2Hex(byte[] b) { if (b == null) { return null; } StringBuffer result = new StringBuffer(); for (int i = 0; i < b.length; i++ 阅读全文
posted @ 2022-07-13 15:03 dafengchui 阅读(657) 评论(0) 推荐(0)
摘要: public static ArrayList<String> splitToStringList(String s, String splitChar) { ArrayList<String> list = new ArrayList<String>(); if (s == null) retur 阅读全文
posted @ 2022-07-13 15:03 dafengchui 阅读(99) 评论(0) 推荐(0)
摘要: <!-- ******************** 模糊查询的常用的3种方式:********************* --> <select id="getUsersByFuzzyQuery" parameterType="User" resultType="User"> select <inc 阅读全文
posted @ 2022-07-07 15:09 dafengchui 阅读(427) 评论(0) 推荐(0)
摘要: 增删改查和调用存储过程 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapp 阅读全文
posted @ 2022-07-07 10:00 dafengchui 阅读(356) 评论(0) 推荐(0)
摘要: 我们只要去修改layui原来自带的导出方法就可以,去设置按照下面步骤 , cols: [ [ {type: 'checkbox', fixed: 'left'}, {field: 'lineNo', title: '线路号', sort: true}, {field: 'lineName', tit 阅读全文
posted @ 2022-07-04 14:20 dafengchui 阅读(668) 评论(0) 推荐(0)
摘要: 1 # -*- coding: utf-8 -*- 2 import os 3 import shutil 4 5 6 def listdir(path, list_name): # 传入存储的list 7 for file in os.listdir(path): 8 file_path = os 阅读全文
posted @ 2022-06-23 16:44 dafengchui 阅读(171) 评论(1) 推荐(0)
摘要: https://zhuanlan.zhihu.com/p/57667777 打开文本文档,输入公式:dir *.*/b>文件清单.txt 阅读全文
posted @ 2022-06-21 14:46 dafengchui 阅读(115) 评论(0) 推荐(0)
摘要: public class InstantiationClass { public static void main(String[] args) throws ClassNotFoundException { Teacher teacher = new Teacher("张三", "123456") 阅读全文
posted @ 2022-06-21 10:26 dafengchui 阅读(60) 评论(0) 推荐(0)
摘要: CIPU 向下接入物理的计算、存储、网络资源,快速云化并进行硬件加速;向上接入飞天云操作系统,管控阿里云全球上百万台服务器,让算力虚拟化损耗降到 0,并通过规模化应用 RDMA 网络技术,让访问云端比访问本地硬盘更快。 阅读全文
posted @ 2022-06-14 11:55 dafengchui 阅读(27) 评论(0) 推荐(0)
摘要: #coding=utf-8 import urllib2 import socket import httplib from bs4 import BeautifulSoup UserAgent = 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/ 阅读全文
posted @ 2022-06-13 14:36 dafengchui 阅读(60) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页