$filePath = './123.xls';$fileType = \PHPExcel_IOFactory::identify($filePath); //文件名自动判断文件类型$objReader = \PHPExcel_IOFactory::createReader($fileType);$ ...
分类:
Web程序 时间:
2020-06-11 16:46:55
阅读次数:
169
部分代码: template部分 <el-form ref="addForm" :rules="rules" :model="addForm" size="medium" label-width="100px"> <el-row> <el-col :span="12"> <el-form-item ...
分类:
Web程序 时间:
2020-06-10 17:26:39
阅读次数:
258
1SELECT*--*为所有属性都要FROM --加表 2使查询表中的名字改变(1):直接+' '+'name'(2):'name'=类别(3):类别 AS 'name 3SELECT '8' teacherFROM class--属性teacher都变成了8 4SELECT timeFROM cl ...
分类:
数据库 时间:
2020-06-10 12:54:36
阅读次数:
140
提供一个文件的网址 1 ... 2 private File getNetUrlHttp(String netUrl, String filePath) throws IOException { 3 File file = null; 4 URL urlfile; 5 InputStream inS ...
分类:
编程语言 时间:
2020-06-10 11:25:42
阅读次数:
121
相关接口文档: https://hbase.apache.org/book.html#arch.overview https://hbase.apache.org/apidocs/index.html http://hbase.apache.org/2.1/apidocs/index.html // ...
分类:
编程语言 时间:
2020-06-09 18:58:34
阅读次数:
66
StringUtils方法的操作对象是java.lang.String类型的对象,是JDK提供的String类型操作方法的补充,并且是null安全的(即如果输入参数String为null则不会抛出NullPointerException,而是做了相应处理,例如,如果输入为null则返回也是null等 ...
分类:
其他好文 时间:
2020-06-09 15:04:30
阅读次数:
69
简单介绍: django自带七个中间件,每个中间件都有各自对应的功能,并且django还支持程序员自定义中间件 在用django开发项目的项目的时候,只要是涉及到全局相关的功能都可以使用中间件方便的完成 # django中间件是django的门户 1.请求来的时候需要先经过中间件才能到达真正的dja ...
分类:
其他好文 时间:
2020-06-08 23:22:07
阅读次数:
65
添加httpcore implementation 'org.apache.httpcomponents:httpcore:4.4.13' 新建一个服务 重写onCreate方法 super.onCreate(); HttpRequestHandler handler = new HttpReque ...
分类:
移动开发 时间:
2020-06-08 16:11:29
阅读次数:
73
原因没有在mybatis-config.xml配置文件中注册Mapper.xml ...
分类:
移动开发 时间:
2020-06-08 11:01:44
阅读次数:
68
1.ack和限流 ack也就是消息确认签收,分为自动签收和手动签收。之前的交换机demo中:channel.basicConsume(queueName,true, consumer); 第二个参数就是自动签收,如果我们要手动签收则需要改成false,再去消息处理中手动签收即可 当我们消息队列中已经 ...
分类:
其他好文 时间:
2020-06-08 00:46:55
阅读次数:
42