上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 23 下一页

2020年12月14日

摘要: #! /bin/bash port=8093 pid=`lsof -t -i:$port` echo "$pid" if [ $pid eq 0 ] then echo "api is already stopped" else kill -9 $pid echo "api is killed" f 阅读全文
posted @ 2020-12-14 10:53 james-roger 阅读(232) 评论(0) 推荐(0) 编辑

2020年8月27日

摘要: 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 阅读全文
posted @ 2020-08-27 18:15 james-roger 阅读(2724) 评论(0) 推荐(0) 编辑

2020年8月17日

摘要: 准备阶段 Beautifulsoup是Python的一个第三方库,它的作用和 xpath 作用一样,都是用来解析html数据 urllib.quote() 是将中文进行编码 List 的理解:desc = ['Google', 'Runoob', 'Taobao','roger','james'] 阅读全文
posted @ 2020-08-17 15:39 james-roger 阅读(234) 评论(0) 推荐(0) 编辑

2020年8月13日

摘要: 环境准备 NFS服务端 CentOS7 192.168.1.11 NFS客户端 CentOS7 192.168.1.12 安装NFS与配置 NFS的常用目录: /etc/exports #NFS服务的主要配置文件 /usr/sbin/exportfs #NFS服务的管理命令 /usr/sbin/sh 阅读全文
posted @ 2020-08-13 09:37 james-roger 阅读(1486) 评论(0) 推荐(0) 编辑

2020年8月7日

摘要: 1、下载 nfs1219.exe 并安装 2、运行haneWIN NFS Server Keygen.exe 获取注册码 3 双击桌面上的NFS Server快捷方式 填写注册码 4.选中exports 点击Edit exports file ,按照sample格式添加nfs文件夹(想要共享给lin 阅读全文
posted @ 2020-08-07 14:26 james-roger 阅读(1851) 评论(0) 推荐(0) 编辑

2020年8月6日

摘要: linux服务器上修改2049端口没有成功,有修改成功的,麻烦评论区说一下 测试的linux服务器ip 192.168.74.129 在linux服务器上执行 yum install nfs-utils -y #安装nfs文件系统软件 编辑配置文件 vim /etc/exports 添加内容: /r 阅读全文
posted @ 2020-08-06 18:28 james-roger 阅读(1104) 评论(0) 推荐(0) 编辑

2020年8月3日

摘要: 1、设置权限 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.INTERNET"/> 2、业务 阅读全文
posted @ 2020-08-03 15:14 james-roger 阅读(3624) 评论(0) 推荐(0) 编辑

2020年6月29日

摘要: 参考地址 https://www.cnblogs.com/zhouqinxiong/p/5565107.html 线 LineString { "type": "LineString", "coordinates": [ [1, 1],[2,1], [3,1]] } { "type": "LineS 阅读全文
posted @ 2020-06-29 14:15 james-roger 阅读(1274) 评论(0) 推荐(0) 编辑

2020年6月23日

摘要: 参考地址 https://blog.csdn.net/zhuyu19911016520/article/details/85048271 依赖引入 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2< 阅读全文
posted @ 2020-06-23 18:11 james-roger 阅读(8904) 评论(0) 推荐(1) 编辑

2020年5月28日

摘要: 在将float和double类型的数据转成 BigDecimal 是应该先转成字符串 new BigDecimal(String.valueOf(a)) 阅读全文
posted @ 2020-05-28 15:44 james-roger 阅读(149) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 23 下一页