Linux中,可以用sysinfo来获取系统相关信息。 #include <sys/sysinfo.h> int sysinfo(struct sysinfo *info); 描述: 在Linux 2.3.16之前,sysinfo()用于返回以下结构中的信息: struct sysinfo { lo ...
分类:
其他好文 时间:
2021-01-22 12:08:44
阅读次数:
0
字符串表达式的计算 java版 | 详见 import java.util.LinkedList; import java.util.List; import java.util.Scanner; import java.util.Stack; public class Main { public ...
分类:
其他好文 时间:
2021-01-22 11:40:03
阅读次数:
0
1. 导出: SQL> exp \'sys/oracle@erp as sysdba \' owner=SCOTT file=/u01/app/oracle/backup/exp_scott.dmp log=/u01/app/oracle/backup/exp_scott.log; 导出SCOTT用 ...
分类:
其他好文 时间:
2021-01-21 10:50:05
阅读次数:
0
//建立文件夹 File f=new File("user"); System.out.println(f.createNewFile()); //建立文件 File wj = new File("user.txt"); File wj2=new File(".","user2.txt"); Sys ...
分类:
其他好文 时间:
2021-01-21 10:47:05
阅读次数:
0
package com.vfsd.core; public class Test1 { public static int[] a1= {3,8,2,5,1,9}; public static void main(String[] args) { print1(); for(int k=0;k<a1 ...
分类:
其他好文 时间:
2021-01-21 10:35:53
阅读次数:
0
1、客户端pom引入 <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId> <version>2.2.4.RELEASE</ve ...
分类:
编程语言 时间:
2021-01-21 10:31:19
阅读次数:
0
口令过期 SQL> conn test/test ERROR: ORA-28002: 7 天之后口令将过期 Connected. SQL> 修改oracle用户密码永不过期 1、查看用户的proifle是哪个,一般是default: sql>SELECT username,PROFILE FROM ...
分类:
其他好文 时间:
2021-01-20 12:15:01
阅读次数:
0
1、需要在安装目录的bin目录下建立配置文件 mongodb.conf #数据路径 dbpadth=/opt/sys/mongodb/db/mongo #日志输出文件路径 logpath=/opt/sys/mongodb/log/mongodb.log #错误日志采用追加模式 logappend=t ...
分类:
数据库 时间:
2021-01-20 12:03:45
阅读次数:
0
1.环境如下 主机名 IP 角色 2.部署前准备 1.环境准备,所有节点分别配置。 关闭防火墙: $ systemctl stop firewalld $ systemctl disable firewalld 关闭 selinux: $ sed -i 's/enforcing/disabled/' ...
分类:
其他好文 时间:
2021-01-20 12:03:09
阅读次数:
0
题目描述 Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays. Follow up: The overall run time ...
分类:
其他好文 时间:
2021-01-19 12:12:17
阅读次数:
0