本文只提供思想。具体可以根椐情况拓展。前提是需要配置远程主机的SNMP协议。主要是共同体哟。脚本使用:1.拷贝check_tcp到脚本执行的主机中或在此主机中安装nagios;2.保持list.txt中只有一个IP列脚本下载地址:http://download.csdn.net/detail/dre...
1、错误描写叙述Expression students is undefined on line 30, column 24 in student.ftl.The problematic instruction:----------==> list students as student [on l...
分类:
其他好文 时间:
2014-07-07 10:04:17
阅读次数:
371
採用jxl.jar包,网上下载,百度一下到出都是。希望能够帮助到大家。接下来直接贴代码:public List getValue(String fileName){ String str=ExcelOparations.readExcel(fileName).trim(); S...
分类:
编程语言 时间:
2014-07-03 22:56:23
阅读次数:
317
select 语句主要语法:SELECT select_list [ INTO new_table ] FROM table_source [ WHERE search_condition ] [ GROUP BY group_by_expression ] [ HAVING search...
分类:
其他好文 时间:
2014-07-03 21:34:18
阅读次数:
347
问题描述如下:Given a linked list, return the node where the cycle begins. If there is no cycle, return null.Follow up:Can you solve it without using extra s...
分类:
其他好文 时间:
2014-07-03 21:00:48
阅读次数:
401
Given a binary tree, flatten it to a linked list in-place.For example,Given 1 / \ 2 5 / \ \ 3 4 6The flattened t...
分类:
其他好文 时间:
2014-07-03 20:32:55
阅读次数:
429
1、依赖的包 根据:http://json-lib.sourceforge.net/ 可见json-lib使用需要依赖一下包: 下载地址:http://download.csdn.net/download/zfxinli/2117292 或百度盘:http://pan.baidu.com/s/1hq...
分类:
编程语言 时间:
2014-07-03 20:10:54
阅读次数:
277
Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.
分类:
其他好文 时间:
2014-07-03 19:10:40
阅读次数:
201
迭代对于我们搞Java的来说绝对不陌生。我们常常使用JDK提供的迭代接口进行Java集合的迭代。 Iterator iterator = list.iterator(); while(iterator.hasNext()){ String string = iterator.next(); //do...
分类:
编程语言 时间:
2014-07-03 19:06:49
阅读次数:
191
Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, return1->2.Given1->1->2->3->3, retu...
分类:
其他好文 时间:
2014-07-03 18:57:04
阅读次数:
193