Hellow - 折叠区的练习 // // Source code recreated from a .class file by IntelliJ IDEA // (powered by Fernflower decompiler) // package com.sun.crypto.provid ...
分类:
其他好文 时间:
2020-06-06 11:07:33
阅读次数:
55
计算公式: mysql: //Lng1表示A点纬度和经度,Lat2 Lng2 表示B点纬度和经度 //a = Lat1 – Lat2为两点纬度之差 b = Lng1 -Lng2 为两点经度之差 //6378.137为地球半径,单位为公里 //计算出来的结果单位为公里 select *,(2 * 63 ...
分类:
数据库 时间:
2020-06-05 15:27:02
阅读次数:
90
glyph 英[ɡl?f] 美[ɡl?f] n. 石雕符号; 象形文 ...
分类:
其他好文 时间:
2020-06-03 23:11:03
阅读次数:
50
一、背景 项目开发中,有时候我们需要获取到Gradle源头Task,以做进一步的逻辑处理。如项目中存在多个组合变体的情况下,需要针对其中特定变体引入不同的plugin。这可能是基于如下考虑: 1,如若所有变体都引入并集后的plugin,在逻辑上对某些变体确实是没必要的; 2,如若plugin中如果有 ...
分类:
移动开发 时间:
2020-05-31 21:24:39
阅读次数:
90
方法 1:通过 Scanner Scanner input = new Scanner(System.in); String s = input.nextLine(); input.close(); 方法 2:通过 BufferedReader BufferedReader input = new ...
分类:
其他好文 时间:
2020-05-31 16:09:12
阅读次数:
83
tom 85 90 jerry 95 80 lucy 80 90 rose 88 90 jay 76 75 summer 87 85 horry 84 80 dic = {} with open('score.txt','r') as f: lines = f.readlines() f.close ...
分类:
其他好文 时间:
2020-05-30 10:28:45
阅读次数:
107
1.安装oppenoffice 下载地址:https://www.openoffice.org/download/ 将下载好的解压包,解压: windows :tar -zxvf Apache_OpenOffice_4.1.3_Linux_x86-64_install-rpm_zh-CN.tar.g ...
分类:
其他好文 时间:
2020-05-29 19:16:28
阅读次数:
68
StringBuilder content1 = new StringBuilder(); InputStreamReader inputStreamReader = new InputStreamReader(request.getInputStream(), "utf-8"); Buffered ...
分类:
其他好文 时间:
2020-05-28 16:18:31
阅读次数:
48
首先查看NTP版本:ntpd--version(1)下载安装包:wgethttp://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-4.2.8p14.tar.gz(2)安装依赖包:yuminstallgccgcc-c++openssl-devellibstdc++libcap(3)备份文件:cp-ar/etc/ntp/etc/ntp.bak&
分类:
其他好文 时间:
2020-05-28 12:55:29
阅读次数:
589
#path:数据路径 #txt:每条数据对应的标签 1 def generateds(path, txt): 2 f = open(txt, 'r') # 以只读形式打开txt文件 3 contents = f.readlines() # 读取文件中所有行 4 f.close() # 关闭txt文件 ...
分类:
其他好文 时间:
2020-05-23 16:19:10
阅读次数:
65