cd 进入个人的主目录cd .. 返回上一级目录cd ../../ 返回上两级目录 cd - 返回上次所在的目录 pwd 显示工作路径ls 查看目录中的文件 ls -F 查看目录中的文件 ls -l 显示文件和目录的详细资料 ls -a 显示隐藏文件 ls *[0-9]* 显示包含数字的文件名和目录 ...
分类:
系统相关 时间:
2020-11-26 15:19:01
阅读次数:
40
函数 作为增强代码的复用性性和可读性,函数必不可少。 1.C#中的函数 1.1 可变参数params static int IntSum(int x, int y) { return x + y; } //重载,可变参数 static int IntSum(params int[] x) { int ...
分类:
其他好文 时间:
2020-11-26 15:18:47
阅读次数:
10
1. 引入maven依赖 1 <dependency> 2 <groupId>commons-io</groupId> 3 <artifactId>commons-io</artifactId> 4 <version>2.6</version> 5 </dependency> 2. 将zip文件转化 ...
分类:
其他好文 时间:
2020-11-26 15:18:31
阅读次数:
14
在不久前的秋季发布会上,苹果一口气为我们带来了全新设计的 Apple Watch Series 以及三款新 iPhone。但可惜的是,包括 MacBook、MacBook Air、Mac mini 等久未更新的 Mac 产品线在发布会上却连影子都没有。 这可让等着升级的 Mac 用户不高兴了。而且在 ...
分类:
系统相关 时间:
2020-11-26 15:18:12
阅读次数:
18
错误详情: Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: javax/xml/bind/DatatypeConverter org.springframework.web.util.Neste ...
分类:
编程语言 时间:
2020-11-26 15:17:54
阅读次数:
13
文章摘自:csdn 希望对大家有帮助,如果有更好的方法,望大佬指教。 var json={"bianhao":"","user":[{"name":"123","idCard":""}]};// var item = {//要插入的数据 'name':$('#name').val(), 'idCar ...
分类:
Web程序 时间:
2020-11-26 15:17:36
阅读次数:
15
首先:开启binlog日志 server-id=1 log-bin=mysql-bin binlog_format=MIXED binlog_format有三种格式: 1)只有sql语句STATEMENT, 你不知道源数据内容是什么,不好恢复 2)ROW模式 这种会记录下源数据内容是什么,记录的日志 ...
分类:
数据库 时间:
2020-11-26 15:17:15
阅读次数:
11
转自:https://blog.csdn.net/gsls200808/article/details/86501905 java8的lambda表达式提供了一些方便list操作的方法,主要涵盖分组、过滤、求和、最值、排序、去重。跟之前的传统写法对比,能少写不少代码。 新建实体类 package c ...
分类:
编程语言 时间:
2020-11-26 15:16:59
阅读次数:
13
class MagicDictionary(object): def __init__(self): """ Initialize your data structure here. """ self.mydict = {} def buildDict(self, dictionary): """ ...
分类:
其他好文 时间:
2020-11-26 15:16:42
阅读次数:
9
官方论坛于2020年3月份免费公布 Sandboxie 源码 官方数字签名的最后一个免费版本的版本号为v5.36 现在由开发者 @DavidXanatos 个人接手源码维护。 下载地址 Sandboxie [最新版] 下载:https://github.com/sandboxie-plus/Sand ...
分类:
数据库 时间:
2020-11-26 15:16:20
阅读次数:
20
环境: 根据公司的信息化建设要求,需要在局域网内部搭建一台文件服务器,以便于对文件的集中管理和备份。考虑到服务器的运行效率及稳定性、安全性问题,选择在 CentOS 7 操作系统中构建 Samba 服务器,以提供文件资源共享服务。 需求概述: 1,在 /var/share/ 目录中建立三个子目录 p ...
分类:
其他好文 时间:
2020-11-26 15:16:00
阅读次数:
40
分析:软键盘弹出后,导致页面高度变化 解决方案:软键盘弹出后,修复页面高度 // 监听窗口变化 resizeScreen(){ if (!this.state.isIOS && this.state.isInApp) { var originHeight = document.documentEle ...
分类:
移动开发 时间:
2020-11-26 15:15:42
阅读次数:
27
I use phpstudy to set a php+Mysql+Apache environment for the sqli-labs. The first step is to download the sqli-labs-master.zip from the official websi ...
分类:
数据库 时间:
2020-11-26 15:15:20
阅读次数:
14
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <title>svg 圆形进度条</title> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <meta ...
分类:
其他好文 时间:
2020-11-26 15:14:56
阅读次数:
6
临时使用 npm install --registry https://registry.npm.taobao.org 全局使用 npm config set registry https://registry.npm.taobao.org 查看全局配置 npm config get registr ...
分类:
其他好文 时间:
2020-11-26 15:14:40
阅读次数:
6
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.o ...
分类:
其他好文 时间:
2020-11-26 15:14:19
阅读次数:
5
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes conta ...
分类:
其他好文 时间:
2020-11-26 15:14:07
阅读次数:
5