码迷,mamicode.com
首页 >  
搜索关键字:operating system    ( 49463个结果
第七周
CentOS6: 一、系统默认未安装system-config-kickstart,先进行yum安装: yum install system-config-kickstart 二、配置kickstart 1.基本配置 这里我们选择语言、键盘模式、时区,设置root账户密码并且选择安装后自动重启以及字 ...
分类:其他好文   时间:2020-09-18 00:48:08    阅读次数:33
匿名、静态代码块
匿名、静态代码块 Public class Person{ //2 { System.out.println("匿名代码块"); } //1 static{ System.out.println("静态代码块"); } //3 public Person(){ System.out.println( ...
分类:其他好文   时间:2020-09-18 00:45:45    阅读次数:36
C# 操作Excel
前期准备:安装微软Excel,需要调用excel类库,Microsoft.Excel XXX Object Library 1 sing System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.T ...
分类:Windows程序   时间:2020-09-18 00:44:22    阅读次数:60
jni之动态库的加载
一项目中,使用了多个动态库,且动态库之间存在依赖关系,假设为a.so及b.so,且b.so依赖于a.so。 在使用 static { System.load(“a.so”); System.load(“b.so”); } 进行动态库加载的时候,始终提示b库加载失败,称找不到依赖a,但是显然第一部就加 ...
分类:其他好文   时间:2020-09-18 00:06:04    阅读次数:29
guava 之 Multiset/Multimap 使用总结
Multiset集合 Multiset是什么?顾名思义,Multiset和Set的区别就是可以保存多个相同的对象。在JDK中,List和Set有一个基本的区别,就是List可以包含多个相同对象,且是有顺序的,而Set不能有重复,且不保证顺序(有些实现有顺序,例如LinkedHashSet和Sorte ...
分类:其他好文   时间:2020-09-17 23:25:32    阅读次数:24
一个请求的生命周期
1. 一个简单的请求: 图1 图2 1)田大林在浏览器里输入baidu.com,浏览器会自动加上协议头,变成https://www.baidu.com/,baidu.com属于域名,代表你要访问的服务,http属于协议、标准,大家解析的规范。 2)域名通过DNS(Domain Name System ...
分类:其他好文   时间:2020-09-17 23:03:46    阅读次数:34
C# WebUtils
using System; using System.IO; using System.Text; using System.Collections.Generic; using System.Security.Cryptography.X509Certificates; using System. ...
分类:Windows程序   时间:2020-09-17 21:57:37    阅读次数:44
安装VisualSVN Server 报错The specified TCP port is occupied
安装过程中报错,如下图所示。 The specified TCP port is occupied by another service.Please stop that service or use another port.(指定tcp端口已被占用,请停止那个服务或是换一个端口使用) 开始看到这 ...
分类:其他好文   时间:2020-09-17 21:47:07    阅读次数:31
C#调用matlab函数报错system.typeinitializationexception的解决方法
问题现象: C#程序调用matlab函数编译出的.dll程序时出现报错system.typeinitializationexception。 解决方法: 1、需要在运行该程序的电脑中安装matlab编译器,且matlab编译器版本与编译该matlab函数时使用的版本一致(matlab编译器并不是ma ...
分类:Windows程序   时间:2020-09-17 21:41:47    阅读次数:45
system call filters failed to install; check the logs and fix your configuration or disable system c
错误: ERROR: [1] bootstrap checks failed [1]: system call filters failed to install; check the logs and fix your configuration or disable system call fi ...
分类:其他好文   时间:2020-09-17 21:25:40    阅读次数:37
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!