12 2017 档案
摘要:一、查询资源占用率高的进程 1.CPU占用最多的前10个进程: ps auxw|head -1;ps auxw|sort -rn -k3|head -10 2.内存消耗最多的前10个进程 ps auxw|head -1;ps auxw|sort -rn -k4|head -10 3.虚拟内存使用最多
阅读全文
摘要:public static void getFormulaCellValue(){ FileInputStream fis = new FileInputStream("c:/temp/test.xls"); Workbook wb = new HSSFWorkbook(fis); //or new XSSFWorkbook("c:/temp/t...
阅读全文
摘要:一、 POI简介 Apache POI是Apache软件基金会的开放源码函式库,POI提供API给Java程序对Microsoft Office格式档案读和写的功能。.NET的开发人员则可以利用NPOI (POI for .NET) 来存取 Microsoft Office文档的功能。 二、POI结
阅读全文
摘要:Business Plan Business Plan The BusinessPlan application creates a sample business plan with three phases, weekly iterations and time highlighting. De
阅读全文
摘要:1. 解析Json数据脚本 例:Json格式 { "body":{ "businessinfo":{ "c1rate":"0.00", "c2rate":"12.00", "c4rate":"21.00", "c5rate":"0.00", "c6rate":"0.00", "c8rate":"0.
阅读全文