上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: import org.apache.commons.lang3.ArrayUtils; import java.util.Arrays; public class C { public static void main(String[] args) { String s = "92081346718 阅读全文
posted @ 2020-09-09 23:22 liw66 阅读(611) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; import java.util.Arrays; public class test{ public static void main(String[] args){ System.out.println("请输入手机号:"); Scanner s 阅读全文
posted @ 2020-04-23 19:30 liw66 阅读(757) 评论(0) 推荐(0) 编辑
摘要: 1.创建sh文件 touch hello.sh vi hello.sh 输入i插入 #!/bin/sh echo hello world; 按esc输入:然后输入wq保存退出 增加sh执行权限 chmod 700 hello.sh 有执行权限的文件是绿色的 执行./hello.sh 2.加入定时任务 阅读全文
posted @ 2020-03-30 22:26 liw66 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1.从官网下载 binary版本/core版本 解压tomcat文件 tar zxvf apache-tomcat-9.0.33.tar.gz 解压gz文件 2.配置tomcat环境变量 编辑/etc/profile文件 vi /etc/profile 在文件末尾插入如下内容 export CATA 阅读全文
posted @ 2020-03-29 15:07 liw66 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 1.清理环境 centos7会自带一个mariadb(mysql分支) 查看是否已安装 rpm -qa |grep -i mysql rpm -qa |grep -i mariadb(centos7默认系统自带的) rpm删除时如果有依赖关系,可以用yum remove + 包名来删除mariadb 阅读全文
posted @ 2020-03-28 19:11 liw66 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 1.解压jdk文件 tar zxvf jdk-8u101-linux-x64.tar 2.配置jdk环境变量 打开/etc/profile文件 vi /etc/profile 在文件末尾按I插入如下内容 export JAVA_HOME=/usr/java/jdk1.8.0_101 export J 阅读全文
posted @ 2020-03-27 09:38 liw66 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 1.下载并安装Node.js 下载地址:https://nodejs.org/en/download/ 下载node-v12.16.1-x64.msi 2.在cmd中查看node.js是否安装成功,以及是否安装npm node -v npm -v 3.安装vue的脚手架工具(vue项目前期项目目录结 阅读全文
posted @ 2020-03-26 13:37 liw66 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 1.安装python 3.8 2.本地python安装各种依赖包 cd C:\Users\liw66\AppData\Local\Programs\Python\Python38-32\Scripts python -m pip install --upgrade pip rem更新pip工具为最新 阅读全文
posted @ 2020-03-25 16:18 liw66 阅读(131) 评论(0) 推荐(0) 编辑
摘要: # 首先安装读写xlsx包 pip install openpyxl==3.0.0 rem 读写 xlsx 3.0.2可能是出现了bug # -*- coding: utf-8 -*- import os import datetime from openpyxl import Workbook o 阅读全文
posted @ 2020-03-19 13:45 liw66 阅读(468) 评论(0) 推荐(0) 编辑
摘要: //1.开发环境 VS 2013 //2.创建MFC应用程序 //3.选择基于对话框选项 //4.打开*.rc文件在对话框界面上拖入ListBox控件 //5.在*Dlg.cpp中插入 #define UNINSTALL_SOFT _T("SOFTWARE\\Microsoft\\Windows\\ 阅读全文
posted @ 2020-03-11 22:06 liw66 阅读(229) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页