码迷,mamicode.com
首页 >  
搜索关键字:bat 分割字符串 split    ( 13005个结果
springboot中mybatis配置文件加载和扫描问题
1、添加mybatis依赖 <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.3.2</version> </ ...
分类:编程语言   时间:2021-06-08 22:31:11    阅读次数:0
windows命令行远程下载文件的三种方法
方法一: certutil -urlcache -split -f http://xx.xx.xx.xx/test.zip c:\test.zip (windows远程下载文件至本地,仅需要一个cmd执行的地方) 方法二: curl http://xx.xx.xx.xx/test.zip -o c: ...
分类:Windows程序   时间:2021-06-07 21:05:23    阅读次数:0
mongodb – 如何在$lookup(聚合)中将ObjectID转换为String
我有两个集合,文章和评论,评论中的文章是文章中_id的外键. db.collection('article').aggregate( [ { $lookup: { from: "comments", localField: "_id", foreignField: "articleId", as: ...
分类:数据库   时间:2021-06-07 20:35:52    阅读次数:0
Mybatis整合Spring
1、输入映射:(1) 基本类型:String, long, integer, double, float, boolean等;(2) pojo类型: 自定义的java bean;(3) Map 企业中不会用到;2、输出映射:(1) 基本类型:String, long, integer, double ...
分类:编程语言   时间:2021-06-06 19:06:40    阅读次数:0
BigDecimal如何做加法除法
//超出double精准度后,如何做加法和除法 BigDecimal sumlong = BigDecimal.ZERO; BigDecimal sumlat= BigDecimal.ZERO; for (int i = 0; i < split.length-1; i++) { String[] ...
分类:其他好文   时间:2021-06-06 19:01:37    阅读次数:0
【Python】文本包jieba使用
看了一个教程:https://www.cnblogs.com/wkfvawl/p/9487165.html 有些不懂的地方自己查阅了一下 键值的添加,获得文件中相同字符出现的次数, counts = ,counts.get(word,0) 一个常用的统计词频的方法 txt = "a b c d a ...
分类:编程语言   时间:2021-06-06 18:55:44    阅读次数:0
Java正则表达式
一、概念 正则表达式是一种文本处理工具,通常用来检索、替换某个符合规则或者模式的文本。 二、字符串中的使用 1.通过String的matches()方法可以验证一个字符串是否匹配某个正则表达式(返回值,boolean),常用于检查某个字符串是否符合特定规则。 2.split()方法可以将字符串从正则 ...
分类:编程语言   时间:2021-06-05 17:43:19    阅读次数:0
批处理文件备忘
在一个批处理文件中调用其他批处理或可执行文件,有两种方式。 第一种 使用call 1.bat需要调用2.bat和3.bat @echo off call 2.bat call 3.bat 这种写法在实际执行时,首先运行2.bat,执行完后才会继续执行3.bat 第二种 使用start 1.bat需要 ...
分类:其他好文   时间:2021-06-05 17:37:23    阅读次数:0
一、kettle安装及建立数据库连接
1、下载pdi-ce-9.0.0.0-423.zip并解压 2、windows下运行Spoon.bat 3、界面如下 4、转换上右键-新建-保存,另存为,然后关闭再打开就是打开的新建的文件 5、DB连接-新建 出现问题如下: Driver class 'org.gjt.mm.mysql.Driver ...
分类:数据库   时间:2021-06-03 18:16:41    阅读次数:0
文件以及文件夹帮助类(FileHelper)
文件以及文件夹帮助类(FileHelper) 代码: using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threadi ...
分类:其他好文   时间:2021-06-03 17:58:33    阅读次数:0
13005条   上一页 1 ... 3 4 5 6 7 ... 1301 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!