相关文章
Linux 6种日志查看方法
Linux查看日志的命令有多种: tail、cat、head、echo等,本文只介绍几种常用的方法。
1、tail
这个是我最常用的一种查看方式
用法如下:
tail -n 10 test.log 查询日志尾部最后10行的日志;
tail -n 10 test.log 查询10行之后的所有日志;
ta…
建站知识
2024/11/24 9:46:49
ORA-12541:TNS:no listener 无监听程序
问题截图 解决方法 1、删除Listener 新建一个新的 2、主机为服务器ip 3、设置数据库环境 只需要设置实例名不需要设置路径 4、服务命名 一样设置为ip 服务名与监听名一直 eg:orcl
建站知识
2024/11/2 0:25:51
复制活动工作表和计数未保存工作簿进行
我给VBA下的定义:VBA是个人小型自动化处理的有效工具。可以大大提高自己的劳动效率,而且可以提高数据的准确性。我这里专注VBA,将我多年的经验汇集在VBA系列九套教程中。
作为我的学员要利用我的积木编程思想,积木编程最重要的是积木如何搭建…
建站知识
2024/11/22 9:24:03
使用interrupt()中断线程
示例一 :
public class Test01 extends Thread {Overridepublic void run() {while (true) {}}public static void main(String[] args) {Test01 t new Test01();t.start();try {Thread.sleep(3000);} catch (InterruptedException e) {e.printStackTrace();}System.out.prin…
建站知识
2024/11/22 5:52:20
根据ip及子网掩码得出网段
function calculateIPRange(ip, subnetMask) {// 将IP地址和子网掩码转换为二进制形式const ipBinary ip.split(.).map(part > parseInt(part, 10).toString(2).padStart(8, 0)).join();const subnetBinary subnetMask.split(.).map(part > parseInt(part, 10).toStrin…
建站知识
2024/11/24 20:33:47
LeetCode75——Day6
文章目录 一、题目二、题解 一、题目
151. Reverse Words in a String
Given an input string s, reverse the order of the words.
A word is defined as a sequence of non-space characters. The words in s will be separated by at least one space.
Return a string …
建站知识
2024/11/13 19:28:31
使用Filter AND Interceptor校验等录(全网独一份,机不可失)
说明:基于spring boot进行的校验
1.熟悉如何使用jwt令牌。(不会的看这里:带你领略JWTl令牌的魅力!!!-CSDN博客) Filter和Interceptor共用文件:(可以仿照,根据…
建站知识
2024/10/16 4:23:23