import org.apache.commons.io.IOUtils;import org.apache.commons.lang.StringUtils;import org.springframework.web.bind.annotation.GetMapping;import org.s ...
分类:
Web程序 时间:
2017-12-25 19:33:05
阅读次数:
215
一、 二、org.apache.commons.lang org.apache.commons.lang.StringUtils; 三、try...catch 最笨的一种方式,通过比如Double.pareOf方法,然后抛出异常时判断为字符串。不推荐这种方式! 参考: https://www.cnb ...
分类:
编程语言 时间:
2017-12-13 02:03:36
阅读次数:
184
1.Json-lib json-lib最开始的也是应用最广泛的json解析工具,json-lib 不好的地方确实是依赖于很多第三方包,包括commons-beanutils.jar,commons-collections.jar,commons-lang.jar,commons-logging.ja ...
分类:
编程语言 时间:
2017-12-08 14:11:20
阅读次数:
262
第一种方法: 利用Servlet API,用response的.getWriter()方法获得PrintWriter Action代码: ajax代码(跟以前的一样): 第二种方法:利用struts2 json插件 1.所需架包 commons-lang.jar; json-lib-2.3-jdk1 ...
分类:
Web程序 时间:
2017-12-04 00:14:00
阅读次数:
174
package com.j1.search.utils; import java.io.UnsupportedEncodingException; import java.net.URLDecoder; import org.apache.commons.lang.StringUtils; publ... ...
分类:
其他好文 时间:
2017-12-01 11:30:55
阅读次数:
128
对json的基本操作 使用json lib包对json对象进行解析,需要使用如下jar包: 1.commons beanutils 1.8.0.jar 2.commons collections 3.2.1.jar 3.commons lang 2.5.jar 4.commons logging 1 ...
分类:
Web程序 时间:
2017-11-25 20:00:56
阅读次数:
200
类似工具见Hutool-StrUtil 一、起步 引入maven依赖 非maven项目想下载jar包,请移步这里:http://commons.apache.org/proper/commons-lang/download_lang.cgi 二、开始使用 概览 常见用法 以下参见网友的随笔:http ...
分类:
其他好文 时间:
2017-10-25 11:17:27
阅读次数:
244
类似的是commons-lang中的StringUtils 空与非空的操作——经典的isBlank/isNotBlank、isEmpty/isNotEmpty isBlank()——是否为空白,空白的定义是null,"",不可见字符(如空格), 镜像方法是isNotBlank() 相关方法是hasB ...
分类:
其他好文 时间:
2017-10-25 00:43:44
阅读次数:
510
1、将要使用到的jar包导入项目(1、commons-lang-2.3.jar 2、barcode4j-light-2.0.jar) 2、新建类 BarcodeUtil 3、代码部分 package com.sale.util;import java.awt.image.BufferedImage; ...
分类:
编程语言 时间:
2017-10-13 14:17:53
阅读次数:
300
使用前需要加入commons-lang的支持 ...
分类:
其他好文 时间:
2017-09-26 13:03:15
阅读次数:
172