csv文件怎么转成excel_Java读写excel,excel转成json写入磁盘文件

pom

读写excel主要的dependency

   <dependency>      <groupId>org.apache.poigroupId>      <artifactId>poiartifactId>      <version>3.16version>  dependency>  <dependency>      <groupId>org.apache.poigroupId>      <artifactId>poi-ooxmlartifactId>      <version>3.14version>  dependency>    <dependency>      <groupId>net.sourceforge.jexcelapigroupId>      <artifactId>jxlartifactId>      <version>2.6.10version>  dependency>

json格式读写使用fastjson

<dependency>    <groupId>com.alibabagroupId>    <artifactId>fastjsonartifactId>    <version>1.2.47version>dependency>

完整的pom.xml文件,这里使用的是springboot整合

<?xml  version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">    <modelVersion>4.0.0modelVersion>    <parent>        <groupId>org.springframework.bootgroupId>        <artifactId>spring-boot-starter-parentartifactId>        <version>2.2.1.RELEASEversion>        <relativePath/>     parent>    <groupId>com.examplegroupId>    <artifactId>demoartifactId>    <version>0.0.1-SNAPSHOTversion>    <name>testname>    <description>Demo project for Spring Bootdescription>    <properties>        <java.version>1.8java.version>        <lombok.version>1.18.4lombok.version>        <druid.version>1.1.13druid.version>        <mybatisplus.version>3.0.7.1mybatisplus.version>    properties>    <dependencies>        <dependency>            <groupId>org.springframework.bootgroupId>            <artifactId>spring-boot-starter-webartifactId>        dependency>        <dependency>            <groupId>org.springframework.bootgroupId>            <artifactId>spring-boot-devtoolsartifactId>            <scope>runtimescope>            <optional>trueoptional>        dependency>        <dependency>            <groupId>org.springframework.bootgroupId>            <artifactId>spring-boot-starter-jdbcartifactId>        dependency>        <dependency>            <groupId>com.baomidougroupId>            <artifactId>mybatis-plusartifactId>            <version>${mybatisplus.version}version>        dependency>        <dependency>            <groupId>mysqlgroupId>            <artifactId>mysql-connector-javaartifactId>            <scope>runtimescope>        dependency>        <dependency>            <groupId>com.baomidougroupId>            <artifactId>mybatis-plus-boot-starterartifactId>            <version>${mybatisplus.version}version>            <exclusions>                <exclusion>                    <groupId>com.baomidougroupId>                    <artifactId>mybatis-plus-generatorartifactId>                exclusion>            exclusions>        dependency>        <dependency>            <groupId>org.apache.httpcomponentsgroupId>            <artifactId>httpclientartifactId>            <version>4.3.1version>        dependency>        <dependency>            <groupId>com.alibabagroupId>            <artifactId>druid-spring-boot-starterartifactId>            <version>${druid.version}version>        dependency>        <dependency>            <groupId>com.alibabagroupId>            <artifactId>fastjsonartifactId>            <version>1.2.47version>        dependency>                <dependency>            <groupId>org.apache.poigroupId>            <artifactId>poiartifactId>            <version>3.16version>        dependency>        <dependency>            <groupId>org.apache.poigroupId>            <artifactId>poi-ooxmlartifactId>            <version>3.14version>        dependency>                <dependency>            <groupId>net.sourceforge.jexcelapigroupId>            <artifactId>jxlartifactId>            <version>2.6.10version>        dependency>        <dependency>            <groupId>org.projectlombokgroupId>            <artifactId>lombokartifactId>            <optional>trueoptional>            <version>${lombok.version}version>        dependency>        <dependency>            <groupId>org.springframework.bootgroupId>            <artifactId>spring-boot-starter-testartifactId>            <scope>testscope>            <exclusions>                <exclusion>                    <groupId>org.junit.vintagegroupId>                    <artifactId>junit-vintage-engineartifactId>                exclusion>            exclusions>        dependency>    dependencies>    <build>        <plugins>            <plugin>                <groupId>org.springframework.bootgroupId>                <artifactId>spring-boot-maven-pluginartifactId>            plugin>        plugins>    build>project>

Java代码

在test测试代码中写入excel,将20行20列写入xls中

   @Test    void contextLoads2(){        /**         * 写入Excel         */        //创建工作簿        HSSFWorkbook hssfWorkbook=new HSSFWorkbook();        //创建工作表        HSSFSheet hssfSheet=hssfWorkbook.createSheet("test1");        for(int row=0;row<20;row++){            //创建行            HSSFRow hssfRow=hssfSheet.createRow(row);            for(int col=0;col<20;col++){                //写入单元格                if(row==0){                    hssfRow.createCell(col).setCellValue("col"+col);                }else {                    hssfRow.createCell(col).setCellValue(row+""+col);                }            }        }        File file=new File("d://Excel.xls");        FileOutputStream fileOutputStream;        try {            fileOutputStream = new FileOutputStream(file);            hssfWorkbook.write(fileOutputStream);            fileOutputStream.close();        }catch (IOException E){            E.printStackTrace();        }    }

打开刚刚写入的xls文件

2708bcadb127854778688573f366dd1e.png

在test测试代码中读取刚刚写入的excel的表格并转成json

 @Test    void contextLoads3(){        /**         *读取Excel         * */        File file=new File("d://Excel.xls");        //创建工作簿工作空间        Workbook workbook;        try {            workbook= WorkbookFactory.create(file);            Sheet sheet= workbook.getSheet("test1");            //System.out.println("sheet.getLastRowNum():"+sheet.getLastRowNum());            //System.out.println("sheet.getFirstRowNum():"+sheet.getFirstRowNum());            //List jsonObjectList=new ArrayList<>();            JSONArray jsonObjectList=new JSONArray();            //先获取到最后一行的行数,因为行数从0开始所以再加1            for(int row=0;row1;row++){                Row sheetrow=sheet.getRow(row);                Row firstrow=sheet.getRow(0);                //取得第一行里的单元格数量,即列数                int cols=firstrow.getPhysicalNumberOfCells();                for (int col=0;col                    JSONObject jsonObject=new JSONObject();                    String key=firstrow.getCell(col).getStringCellValue();                    if(row!=0){                        String value=sheetrow.getCell(col).getStringCellValue();                        jsonObject.put(key,value);                        jsonObjectList.add(jsonObject);                    }                    //System.out.print(sheetrow.getCell(col).getStringCellValue()+" ");                }                //System.out.println("");            }            //格式化输出            String jsonObjectList_result= JSONArray.toJSONString(jsonObjectList, SerializerFeature.PrettyFormat,SerializerFeature.WriteMapNullValue,SerializerFeature.WriteDateUseDateFormat);            System.out.println(jsonObjectList_result);        }catch (IOException E){            E.printStackTrace();        }catch (InvalidFormatException e){            e.printStackTrace();        }    }

json格式如下:

[  {    "col0":"10"  },  {    "col1":"11"  },  {    "col2":"12"  },  {    "col3":"13"  },  {    "col4":"14"  },  {    "col5":"15"  },  {    "col6":"16"  },  {    "col7":"17"  },  {    "col8":"18"  },  {    "col9":"19"  },  {    "col10":"110"  },  {    "col11":"111"  },  {    "col12":"112"  },  {    "col13":"113"  },  {    "col14":"114"  },  {    "col15":"115"  },  {    "col16":"116"  },  {    "col17":"117"  },  {    "col18":"118"  },  {    "col19":"119"  },  {    "col0":"20"  },  {    "col1":"21"  },  {    "col2":"22"  },  {    "col3":"23"  },  {    "col4":"24"  },  {    "col5":"25"  },  {    "col6":"26"  },  {    "col7":"27"  },  {    "col8":"28"  },  {    "col9":"29"  },  {    "col10":"210"  },  {    "col11":"211"  },  {    "col12":"212"  },  {    "col13":"213"  },  {    "col14":"214"  },  {    "col15":"215"  },  {    "col16":"216"  },  {    "col17":"217"  },  {    "col18":"218"  },  {    "col19":"219"  },  {    "col0":"30"  },  {    "col1":"31"  },  {    "col2":"32"  },  {    "col3":"33"  },  {    "col4":"34"  },  {    "col5":"35"  },  {    "col6":"36"  },  {    "col7":"37"  },  {    "col8":"38"  },  {    "col9":"39"  },  {    "col10":"310"  },  {    "col11":"311"  },  {    "col12":"312"  },  {    "col13":"313"  },  {    "col14":"314"  },  {    "col15":"315"  },  {    "col16":"316"  },  {    "col17":"317"  },  {    "col18":"318"  },  {    "col19":"319"  },  {    "col0":"40"  },  {    "col1":"41"  },  {    "col2":"42"  },  {    "col3":"43"  },  {    "col4":"44"  },  {    "col5":"45"  },  {    "col6":"46"  },  {    "col7":"47"  },  {    "col8":"48"  },  {    "col9":"49"  },  {    "col10":"410"  },  {    "col11":"411"  },  {    "col12":"412"  },  {    "col13":"413"  },  {    "col14":"414"  },  {    "col15":"415"  },  {    "col16":"416"  },  {    "col17":"417"  },  {    "col18":"418"  },  {    "col19":"419"  },  {    "col0":"50"  },  {    "col1":"51"  },  {    "col2":"52"  },  {    "col3":"53"  },  {    "col4":"54"  },  {    "col5":"55"  },  {    "col6":"56"  },  {    "col7":"57"  },  {    "col8":"58"  },  {    "col9":"59"  },  {    "col10":"510"  },  {    "col11":"511"  },  {    "col12":"512"  },  {    "col13":"513"  },  {    "col14":"514"  },  {    "col15":"515"  },  {    "col16":"516"  },  {    "col17":"517"  },  {    "col18":"518"  },  {    "col19":"519"  },  {    "col0":"60"  },  {    "col1":"61"  },  {    "col2":"62"  },  {    "col3":"63"  },  {    "col4":"64"  },  {    "col5":"65"  },  {    "col6":"66"  },  {    "col7":"67"  },  {    "col8":"68"  },  {    "col9":"69"  },  {    "col10":"610"  },  {    "col11":"611"  },  {    "col12":"612"  },  {    "col13":"613"  },  {    "col14":"614"  },  {    "col15":"615"  },  {    "col16":"616"  },  {    "col17":"617"  },  {    "col18":"618"  },  {    "col19":"619"  },  {    "col0":"70"  },  {    "col1":"71"  },  {    "col2":"72"  },  {    "col3":"73"  },  {    "col4":"74"  },  {    "col5":"75"  },  {    "col6":"76"  },  {    "col7":"77"  },  {    "col8":"78"  },  {    "col9":"79"  },  {    "col10":"710"  },  {    "col11":"711"  },  {    "col12":"712"  },  {    "col13":"713"  },  {    "col14":"714"  },  {    "col15":"715"  },  {    "col16":"716"  },  {    "col17":"717"  },  {    "col18":"718"  },  {    "col19":"719"  },  {    "col0":"80"  },  {    "col1":"81"  },  {    "col2":"82"  },  {    "col3":"83"  },  {    "col4":"84"  },  {    "col5":"85"  },  {    "col6":"86"  },  {    "col7":"87"  },  {    "col8":"88"  },  {    "col9":"89"  },  {    "col10":"810"  },  {    "col11":"811"  },  {    "col12":"812"  },  {    "col13":"813"  },  {    "col14":"814"  },  {    "col15":"815"  },  {    "col16":"816"  },  {    "col17":"817"  },  {    "col18":"818"  },  {    "col19":"819"  },  {    "col0":"90"  },  {    "col1":"91"  },  {    "col2":"92"  },  {    "col3":"93"  },  {    "col4":"94"  },  {    "col5":"95"  },  {    "col6":"96"  },  {    "col7":"97"  },  {    "col8":"98"  },  {    "col9":"99"  },  {    "col10":"910"  },  {    "col11":"911"  },  {    "col12":"912"  },  {    "col13":"913"  },  {    "col14":"914"  },  {    "col15":"915"  },  {    "col16":"916"  },  {    "col17":"917"  },  {    "col18":"918"  },  {    "col19":"919"  },  {    "col0":"100"  },  {    "col1":"101"  },  {    "col2":"102"  },  {    "col3":"103"  },  {    "col4":"104"  },  {    "col5":"105"  },  {    "col6":"106"  },  {    "col7":"107"  },  {    "col8":"108"  },  {    "col9":"109"  },  {    "col10":"1010"  },  {    "col11":"1011"  },  {    "col12":"1012"  },  {    "col13":"1013"  },  {    "col14":"1014"  },  {    "col15":"1015"  },  {    "col16":"1016"  },  {    "col17":"1017"  },  {    "col18":"1018"  },  {    "col19":"1019"  },  {    "col0":"110"  },  {    "col1":"111"  },  {    "col2":"112"  },  {    "col3":"113"  },  {    "col4":"114"  },  {    "col5":"115"  },  {    "col6":"116"  },  {    "col7":"117"  },  {    "col8":"118"  },  {    "col9":"119"  },  {    "col10":"1110"  },  {    "col11":"1111"  },  {    "col12":"1112"  },  {    "col13":"1113"  },  {    "col14":"1114"  },  {    "col15":"1115"  },  {    "col16":"1116"  },  {    "col17":"1117"  },  {    "col18":"1118"  },  {    "col19":"1119"  },  {    "col0":"120"  },  {    "col1":"121"  },  {    "col2":"122"  },  {    "col3":"123"  },  {    "col4":"124"  },  {    "col5":"125"  },  {    "col6":"126"  },  {    "col7":"127"  },  {    "col8":"128"  },  {    "col9":"129"  },  {    "col10":"1210"  },  {    "col11":"1211"  },  {    "col12":"1212"  },  {    "col13":"1213"  },  {    "col14":"1214"  },  {    "col15":"1215"  },  {    "col16":"1216"  },  {    "col17":"1217"  },  {    "col18":"1218"  },  {    "col19":"1219"  },  {    "col0":"130"  },  {    "col1":"131"  },  {    "col2":"132"  },  {    "col3":"133"  },  {    "col4":"134"  },  {    "col5":"135"  },  {    "col6":"136"  },  {    "col7":"137"  },  {    "col8":"138"  },  {    "col9":"139"  },  {    "col10":"1310"  },  {    "col11":"1311"  },  {    "col12":"1312"  },  {    "col13":"1313"  },  {    "col14":"1314"  },  {    "col15":"1315"  },  {    "col16":"1316"  },  {    "col17":"1317"  },  {    "col18":"1318"  },  {    "col19":"1319"  },  {    "col0":"140"  },  {    "col1":"141"  },  {    "col2":"142"  },  {    "col3":"143"  },  {    "col4":"144"  },  {    "col5":"145"  },  {    "col6":"146"  },  {    "col7":"147"  },  {    "col8":"148"  },  {    "col9":"149"  },  {    "col10":"1410"  },  {    "col11":"1411"  },  {    "col12":"1412"  },  {    "col13":"1413"  },  {    "col14":"1414"  },  {    "col15":"1415"  },  {    "col16":"1416"  },  {    "col17":"1417"  },  {    "col18":"1418"  },  {    "col19":"1419"  },  {    "col0":"150"  },  {    "col1":"151"  },  {    "col2":"152"  },  {    "col3":"153"  },  {    "col4":"154"  },  {    "col5":"155"  },  {    "col6":"156"  },  {    "col7":"157"  },  {    "col8":"158"  },  {    "col9":"159"  },  {    "col10":"1510"  },  {    "col11":"1511"  },  {    "col12":"1512"  },  {    "col13":"1513"  },  {    "col14":"1514"  },  {    "col15":"1515"  },  {    "col16":"1516"  },  {    "col17":"1517"  },  {    "col18":"1518"  },  {    "col19":"1519"  },  {    "col0":"160"  },  {    "col1":"161"  },  {    "col2":"162"  },  {    "col3":"163"  },  {    "col4":"164"  },  {    "col5":"165"  },  {    "col6":"166"  },  {    "col7":"167"  },  {    "col8":"168"  },  {    "col9":"169"  },  {    "col10":"1610"  },  {    "col11":"1611"  },  {    "col12":"1612"  },  {    "col13":"1613"  },  {    "col14":"1614"  },  {    "col15":"1615"  },  {    "col16":"1616"  },  {    "col17":"1617"  },  {    "col18":"1618"  },  {    "col19":"1619"  },  {    "col0":"170"  },  {    "col1":"171"  },  {    "col2":"172"  },  {    "col3":"173"  },  {    "col4":"174"  },  {    "col5":"175"  },  {    "col6":"176"  },  {    "col7":"177"  },  {    "col8":"178"  },  {    "col9":"179"  },  {    "col10":"1710"  },  {    "col11":"1711"  },  {    "col12":"1712"  },  {    "col13":"1713"  },  {    "col14":"1714"  },  {    "col15":"1715"  },  {    "col16":"1716"  },  {    "col17":"1717"  },  {    "col18":"1718"  },  {    "col19":"1719"  },  {    "col0":"180"  },  {    "col1":"181"  },  {    "col2":"182"  },  {    "col3":"183"  },  {    "col4":"184"  },  {    "col5":"185"  },  {    "col6":"186"  },  {    "col7":"187"  },  {    "col8":"188"  },  {    "col9":"189"  },  {    "col10":"1810"  },  {    "col11":"1811"  },  {    "col12":"1812"  },  {    "col13":"1813"  },  {    "col14":"1814"  },  {    "col15":"1815"  },  {    "col16":"1816"  },  {    "col17":"1817"  },  {    "col18":"1818"  },  {    "col19":"1819"  },  {    "col0":"190"  },  {    "col1":"191"  },  {    "col2":"192"  },  {    "col3":"193"  },  {    "col4":"194"  },  {    "col5":"195"  },  {    "col6":"196"  },  {    "col7":"197"  },  {    "col8":"198"  },  {    "col9":"199"  },  {    "col10":"1910"  },  {    "col11":"1911"  },  {    "col12":"1912"  },  {    "col13":"1913"  },  {    "col14":"1914"  },  {    "col15":"1915"  },  {    "col16":"1916"  },  {    "col17":"1917"  },  {    "col18":"1918"  },  {    "col19":"1919"  }]

将格式化的json写入json文件中存入磁盘

@Test    void contextLoads3(){        /**         *读取Excel         * */        File file=new File("d://Excel.xls");        //创建工作簿工作空间        Workbook workbook;        try {            workbook= WorkbookFactory.create(file);            Sheet sheet= workbook.getSheet("test1");            //System.out.println("sheet.getLastRowNum():"+sheet.getLastRowNum());            //System.out.println("sheet.getFirstRowNum():"+sheet.getFirstRowNum());            //List jsonObjectList=new ArrayList<>();            JSONArray jsonObjectList=new JSONArray();            //先获取到最后一行的行数,因为行数从0开始所以再加1            for(int row=0;row1;row++){                Row sheetrow=sheet.getRow(row);                Row firstrow=sheet.getRow(0);                //取得第一行里的单元格数量,即列数                int cols=firstrow.getPhysicalNumberOfCells();                for (int col=0;col                    JSONObject jsonObject=new JSONObject();                    String key=firstrow.getCell(col).getStringCellValue();                    if(row!=0){                        String value=sheetrow.getCell(col).getStringCellValue();                        jsonObject.put(key,value);                        jsonObjectList.add(jsonObject);                    }                    //System.out.print(sheetrow.getCell(col).getStringCellValue()+" ");                }                //System.out.println("");            }            //格式化输出            String jsonObjectList_result= JSONArray.toJSONString(jsonObjectList, SerializerFeature.PrettyFormat,SerializerFeature.WriteMapNullValue,SerializerFeature.WriteDateUseDateFormat);            System.out.println(jsonObjectList_result);            File json_file=new File("d://json1.json");            FileOutputStream fileOutputStream=new FileOutputStream(json_file);            //第一种            //fileOutputStream.write(jsonObjectList_result.getBytes());            //第二种            OutputStreamWriter outputStreamWriter=new OutputStreamWriter(fileOutputStream,"UTF-8");            outputStreamWriter.write(jsonObjectList_result);            //fileOutputStream.close();            outputStreamWriter.close();        }catch (IOException E){            E.printStackTrace();        }catch (InvalidFormatException e){            e.printStackTrace();        }    }

写入json文件的结果

d34024123c34ca10867e363453ed3dd3.png

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/395070.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

如何用Ant Design Pro框架做项目省力

1、熟悉React所有语法&#xff0c;以及redux、redux-saga、dva、一类的库的能力 2、灵活运用该框架提供的基础UI组件&#xff0c;想方设法利用现有的UI组件进行组合&#xff0c;尽可能减少工作量 转载于:https://www.cnblogs.com/ww01/p/10430553.html

通过在Chipotle用餐了解模板方法设计模式

by Sihui Huang黄思慧 通过在Chipotle用餐了解模板方法设计模式 (Understanding the Template Method design pattern by eating at Chipotle) Object-Oriented Design Patterns in Life— gain an intuitive understanding of OO design patterns by linking them with real-…

Coriant助力Aureon部署100Gbps光纤网络

根据相关消息显示&#xff0c;光传输设备厂商Coriant日前表示已经向网络传输和业务通信服务供应商Aureon Technology提供了7100纳米分组光传输平台&#xff0c;帮助其进行100Gbps光纤网络的拓展。 该服务供应商&#xff08;Aureon&#xff09;将利用该分组光传输系统&#xff0…

python class tynu()_Visual Studio Express | Teraz Visual Studio Community

Program Visual Studio 2019 jest teraz dostępnyDostosowany instalatorTwrz aplikacje w technologiach WPF, WinForms, platformy uniwersalną systemu Windows, Win32, Android, iOS i innych — wszystko to za pomocą jednego środowiska IDE zapewniającego wszyst…

css样式中如何设置中文字体?

代码如下: .selector{font-family: SimHei,"微软雅黑",sans-serif;} 注意&#xff1a;加上中文名“微软雅黑”是为了兼容opera浏览器&#xff0c;中文字体名必须加上引号&#xff08;单引号双引号都可以&#xff09;。 MicrosoftJhengHei为微软正黑体&#xff0c;STH…

前端做CRM管理系统是做什么_代办行业的CRM客户关系管理系统应该是什么样子的?...

随着互联网的深耕细化&#xff0c;很多企业也在不断优化自己的办公方式&#xff0c;以优化企业的办公流程&#xff0c;提高企业的办事效率。因此实现办公自动化&#xff0c;或者说实现数字化办公就需要逐渐提上日程。今天给大家讲讲可以帮助代办行业实现办公自动化的产品&#…

(译) JSON-RPC 2.0 规范(中文版)

http://wiki.geekdream.com/Specification/json-rpc_2.0.html 起源时间: 2010-03-26(基于2009-05-24版本) 更新: 2013-01-04 作者: JSON-RPC工作组< json-rpcgooglegroups.com > 原文链接: http://www.jsonrpc.org/specification翻译: leozvc < xxfs91gmail.com >…

ios pusher使用_如何使用JavaScript和Pusher实时更新用户状态

ios pusher使用by Rahat Khanna通过拉哈特汉娜 如何使用JavaScript和Pusher实时更新用户状态 (How to update a User’s Status in realtime using JavaScript and Pusher) “Hey, what’s up?” is not a phrase we need to ask someone these days. These days knowing wha…

python + pyqt5 UI和信号槽分离方法

初级菜鸟&#xff0c;知识点记录。 每次重新生成UI.py文件的时候&#xff0c;里面的按钮方法都会被清除&#xff0c;想一个方法可以把按钮响应方法放到外面&#xff0c;利于维护。 新建一个按钮文件并继承UI代码&#xff0c;把信号槽及按钮响应方法写在按钮文件里面&#xff0c…

学习之路~sqh

推荐博客 Edison Chou&#xff1b;Vamei&#xff1b;算法∙面试专题 - 简书&#xff1b;xingoo - 博客园&#xff1b;设计模式 极速理解设计模式系列【目录索引】- Caleung&#xff1b;Net设计模式 - 灵动生活&#xff1b;宅男程序员给老婆的计算机课程系列&#xff1b;C设计模…

python format函数保留两位小数_python format函数

在Python 3.0中&#xff0c;%操作符通过一个更强的格式化方法format()进行了增强。对str.format()的支持已经被反向移植到了Python 2.6在2.6中&#xff0c;8-bit字符串和Unicode字符串都有一个format()方法&#xff0c;这个方法会把字符串当作一个模版&#xff0c;通过传入的参…

蓝牙 sig base uuid_蓝牙模块采用陶瓷天线和PCB天线的区别

一、陶瓷天线陶瓷天线是一种适合于蓝牙设备使用的小型化天线,又分为块状陶瓷天线和多层陶瓷天线。陶瓷天线占用空间很小、性能比较好&#xff1b; 带宽窄&#xff0c;比较难做到多频段&#xff1b;有效提高主板的整合度&#xff0c;并可降低天线对ID的限制&#xff1b;需要在主…

kubernetes系列12—二个特色的存储卷configmap和secret

本文收录在容器技术学习系列文章总目录 1、configmap 1.1 认识configmap ConfigMap用于保存配置数据的键值对&#xff0c;可以用来保存单个属性&#xff0c;也可以用来保存配置文件。ConfigMap跟secret很类似&#xff0c;但它可以更方便地处理不包含敏感信息的字符串。 1.2 创建…

华为完成拉美铜网宽带G.fast技术部署测试

1/11/2016,英国大东通信巴拿马分公司日前与华为公司发布消息称&#xff0c;覆盖拉丁美洲地区的最快铜缆宽带服务系统成功完成初次测试。 作为巴拿马地区领先的移动宽带服务提供商&#xff0c;大东通信巴拿马分公司也是当地最大的电信服务提供商&#xff0c;此次与华为合作在现有…

kotlin调用类中的方法_一种轻松的方法来测试Kotlin中令人沮丧的静态方法调用

kotlin调用类中的方法by Oleksii Fedorov通过Oleksii Fedorov 一种轻松的方法来测试Kotlin中令人沮丧的静态方法调用 (A stress-free way to test frustrating static method calls in Kotlin) Let me make a wild guess… You have encountered some code in Kotlin that is …

python图像加密模块_使用Pycryp的图像加密和解密

这和加密或解密文本是一样的。示例首先导入一些模块&#xff1a;from Crypto.Cipher import AESfrom Crypto import Random然后&#xff0c;让我们生成一个键和一个初始化向量。key Random.new().read(AES.block_size)iv Random.new().read(AES.block_size)加密下面的代码加载…

遇到attemp to invoke virtual method

这个很大原因是没有预先初始化sdk&#xff0c;检查application的配置是否配置了application&#xff1a;name 转载于:https://www.cnblogs.com/caimuqing/p/5894099.html

app启动页自动跳转源码_关于移动端App启动页的策划方案

App启动页是指app在启东时需要加载必要的运行环境和配置&#xff0c;在这个过程中提示用户等待的一个过渡页面。在产品经理眼里启动页是app给予用户重要的第一印象&#xff1b;也是App最重要的黄金页面之一&#xff0c;所有用户100%都会看到的页面。启动页适合用来做以下几个事…

电信运营商占IDC市场65%:中国电信占行业半数以上

随着云计算、大数据的快速发展&#xff0c;作为重要基础设施的IDC数据中心也在高速扩张。 近日&#xff0c;DCA常务理事长何宝宏介绍&#xff0c;我国规划在建数据中心共计246个&#xff0c;总设计机架数约为103万个&#xff0c;总设计服务器规模约1326万台。在用超大型、大型数…

Python 日期和时间戳的转换

Python 日期和时间戳的转换 1. Python中处理时间的模块 Python中处理时间的模块有time、datetime和calendar。 在Python中表示时间的方式&#xff1a; 时间戳&#xff1a;10位整数位和若干小数位&#xff0c;例如 1551153156.6358607元组&#xff08;struct_time&#xff09;: …