System.getProperties().list(System.out); 如果要获取某一个属性,例如常见的“操作系统” 则 System.getProperty("os.name"); 输出如下 java.runtime.name=Java(TM) SE Runtime Environmen ...
分类:
编程语言 时间:
2018-03-07 15:09:31
阅读次数:
237
test.xml:<?xmlversion="1.0"encoding="ISO-8859-1"?><catalog><cd><title>EmpireBurlesque</title><artist>BobDylan</artist><country>USA</country><co
分类:
Web程序 时间:
2018-03-06 15:37:22
阅读次数:
314
There is a table World A country is big if it has an area of bigger than 3 million square km or a population of more than 25 million. Write a SQL solu ...
分类:
其他好文 时间:
2018-03-03 21:23:23
阅读次数:
152
前两天在学习Springboot使用JPA 来操作数据库时,碰到一个问题,最终发现了JPA写法中表字段名称要写规范。 记录下来提醒自己。 CityEntity是一个City的实体类。 通过CityRepository.findall() 来查询时,一直报错,报错说没有country_code字段,而 ...
分类:
其他好文 时间:
2018-03-02 12:33:24
阅读次数:
168
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=3018 题目: Problem Description Ant Country consist of N towns.There are M roads connecting the towns. An ...
分类:
其他好文 时间:
2018-03-01 17:23:00
阅读次数:
208
引入jquery.js $.getScript('http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js',function(){ alert(remote_ip_info.country);//国家 alert(remote_ip_ ...
分类:
Web程序 时间:
2018-02-28 12:54:14
阅读次数:
503
1.angular快速开始 标记 告诉AngularJS处理整个HTML页并引导应用: 指令把输入域的值绑定到应用程序变量 yourname 指令把应用程序变量 yourname 绑定到某个段落的 innerHTML 指令初始化 AngularJS 应用程序变量。 例子 <!doctype html ...
分类:
Web程序 时间:
2018-02-22 10:54:12
阅读次数:
192
根据老男孩课程以及网上的代码,自行打出的代码,虽然参照的比较多,嘿嘿嘿 ...
分类:
其他好文 时间:
2018-02-21 15:50:25
阅读次数:
164
FTP虚拟用户及ssl加密配置注意:配置FTP服务时,最好关闭防火墙和selinux1、虚拟用户和真实用户区别 真实用户:是在服务器上登录的用户,比如安装系统时的用户。 虚拟用户:是创立的用户,只能登录ftp,而不能登录系统,不是系统的用户。这样比使用系统用户要安全。2、创建FTP虚拟用户账号数据步骤1.建立虚拟FTP用户的帐号数据库文件2.创建FTP
分类:
其他好文 时间:
2018-02-11 14:41:11
阅读次数:
240
light1002:传送门 【题目大意】 n个点m条边,给一个源点,找出源点到其他点的‘最短路’ 定义:找出每条通路中最大的cost,这些最大的cost中找出一个最小的即为‘最短路’,dijkstra变形。dis[i]为s->i的‘最短路’ ...
分类:
其他好文 时间:
2018-02-10 11:20:12
阅读次数:
142