08 2020 档案
-
spirngboot使用netty实现UDP协议接收数据
摘要:compile group: 'io.netty', name: 'netty-all', version: '4.1.42.Final' package com.test.udp; import io.netty.bootstrap.Bootstrap; import io.netty.chann 阅读全文
-
python爬虫
摘要:准备阶段 Beautifulsoup是Python的一个第三方库,它的作用和 xpath 作用一样,都是用来解析html数据 urllib.quote() 是将中文进行编码 List 的理解:desc = ['Google', 'Runoob', 'Taobao','roger','james'] 阅读全文
-
linux上nfs挂载
摘要:环境准备 NFS服务端 CentOS7 192.168.1.11 NFS客户端 CentOS7 192.168.1.12 安装NFS与配置 NFS的常用目录: /etc/exports #NFS服务的主要配置文件 /usr/sbin/exportfs #NFS服务的管理命令 /usr/sbin/sh 阅读全文
-
linux挂载windows nfs文件夹
摘要:1、下载 nfs1219.exe 并安装 2、运行haneWIN NFS Server Keygen.exe 获取注册码 3 双击桌面上的NFS Server快捷方式 填写注册码 4.选中exports 点击Edit exports file ,按照sample格式添加nfs文件夹(想要共享给lin 阅读全文
-
利用nfs将linux服务器上的目录共享到windows服务器
摘要:linux服务器上修改2049端口没有成功,有修改成功的,麻烦评论区说一下 测试的linux服务器ip 192.168.74.129 在linux服务器上执行 yum install nfs-utils -y #安装nfs文件系统软件 编辑配置文件 vim /etc/exports 添加内容: /r 阅读全文
-
android下载apk并安装
摘要:1、设置权限 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.INTERNET"/> 2、业务 阅读全文