Apache Commons 工具集使用简介

pache Commons包含了很多开源的工具,用于解决平时编程经常会遇到的问题,减少重复劳动。我选了一些比较常用的项目做简单介绍。文中用了很多网上现成的东西,我只是做了一个汇总整理。

一、Commons BeanUtils

http://jakarta.apache.org/commons/beanutils/index.html

说明:针对Bean的一个工具集。由于Bean往往是有一堆get和set组成,所以BeanUtils也是在此基础上进行一些包装。

使用示例:功能有很多,网站上有详细介绍。一个比较常用的功能是Bean Copy,也就是copy bean的属性。如果做分层架构开发的话就会用到,比如从PO(Persistent Object)拷贝数据到VO(Value Object)。

传统方法如下:


  1. //得到TeacherForm 
  2.  
  3. TeacherForm teacherForm=(TeacherForm)form; 
  4.  
  5. //构造Teacher对象 
  6.  
  7. Teacher teacher=new Teacher(); 
  8.  
  9. //赋值 
  10. teacher.setName(teacherForm.getName()); 
  11. teacher.setAge(teacherForm.getAge()); 
  12. teacher.setGender(teacherForm.getGender()); 
  13. teacher.setMajor(teacherForm.getMajor()); 
  14. teacher.setDepartment(teacherForm.getDepartment()); 
  15.  
  16. //持久化Teacher对象到数据库 
  17. HibernateDAO= ; 
  18. HibernateDAO.save(teacher); 

使用BeanUtils后,代码就大大改观了,如下所示:


  1. //得到TeacherForm 
  2. TeacherForm teacherForm=(TeacherForm)form; 
  3. //构造Teacher对象 
  4. Teacher teacher=new Teacher(); 
  5.  
  6. //赋值 
  7. BeanUtils.copyProperties(teacher,teacherForm); 
  8.  
  9. //持久化Teacher对象到数据库 
  10. HibernateDAO= ; 
  11. HibernateDAO.save(teacher); 

二、Commons CLI

http://jakarta.apache.org/commons/cli/index.html

说明:这是一个处理命令的工具。比如main方法输入的string[]需要解析。你可以预先定义好参数的规则,然后就可以调用CLI来解析。

使用示例:


  1. // create Options object 
  2. Options options = new Options(); 
  3. // add t option, option is the command parameter, false indicates that 
  4. // this parameter is not required. 
  5.  
  6. options.addOption(“t”, false, “display current time”); 
  7. options.addOption("c", true, "country code"); 
  8.  
  9. CommandLineParser parser = new PosixParser(); 
  10. CommandLine cmd = parser.parse( options, args); 
  11.  
  12. if(cmd.hasOption("t")) { 
  13.    // print the date and time 
  14. }else { 
  15.    // print the date 
  16.  
  17. // get c option value 
  18. String countryCode = cmd.getOptionValue("c"); 
  19.  
  20. if(countryCode == null) { 
  21.     // print default date 
  22. }else { 
  23.     // print date for country specified by countryCode 

三、Commons Codec

http://jakarta.apache.org/commons/codec/index.html

说明:这个工具是用来编码和解码的,包括Base64,URL,Soundx等等。用这个工具的人应该很清楚这些,我就不多介绍了。

四、Commons Collections

http://jakarta.apache.org/commons/collections/

说明:你可以把这个工具看成是java.util的扩展。

使用示例:举一个简单的例子


  1. OrderedMap map = new LinkedMap(); 
  2. map.put("FIVE", "5"); 
  3. map.put("SIX", "6"); 
  4. map.put("SEVEN", "7"); 
  5. map.firstKey(); // returns "FIVE" 
  6. map.nextKey("FIVE"); // returns "SIX" 
  7. map.nextKey("SIX"); // returns "SEVEN" 

五、Commons Configuration

http://jakarta.apache.org/commons/configuration/

说明:这个工具是用来帮助处理配置文件的,支持很多种存储方式

1. Properties files
2. XML documents
3. Property list files (.plist)
4. JNDI
5. JDBC Datasource
6. System properties
7. Applet parameters
8. Servlet parameters

使用示例:举一个Properties的简单例子


  1. # usergui.properties, definining the GUI, 
  2. colors.background = #FFFFFF 
  3. colors.foreground = #000080 
  4. window.width = 500 
  5. window.height = 300 
  6.  
  7. PropertiesConfiguration config = new PropertiesConfiguration("usergui.properties"); 
  8. config.setProperty("colors.background", "#000000); 
  9. config.save(); 
  10.  
  11. config.save("usergui.backup.properties);//save a copy 
  12. Integer integer = config.getInteger("window.width"); 
  13.  
  14. Commons DBCP 
  15.  
  16. http://jakarta.apache.org/commons/dbcp/ 

说明:Database Connection pool, Tomcat就是用的这个,不用我多说了吧,要用的自己去网站上看说明。

六、Commons DbUtils

http://jakarta.apache.org/commons/dbutils/

说明:我以前在写数据库程序的时候,往往把数据库操作单独做一个包。DbUtils就是这样一个工具,以后开发不用再重复这样的工作了。值得一体的是,这个工具并不是现在流行的OR-Mapping工具(比如Hibernate),只是简化数据库操作,比如

QueryRunner run = new QueryRunner(dataSource);

// Execute the query and get the results back from the handler
Object[] result = (Object[]) run.query("SELECT * FROM Person WHERE name=?", "John Doe");

七、Commons FileUpload

http://jakarta.apache.org/commons/fileupload/

说明:jsp的上传文件功能怎么做呢?

使用示例:


  1. // Create a factory for disk-based file items 
  2. FileItemFactory factory = new DiskFileItemFactory(); 
  3. // Create a new file upload handler 
  4. ServletFileUpload upload = new ServletFileUpload(factory); 
  5.  
  6. // Parse the request 
  7. List /* FileItem */ items = upload.parseRequest(request); 
  8. // Process the uploaded items 
  9. Iterator iter = items.iterator(); 
  10. while (iter.hasNext()) { 
  11.      FileItem item = (FileItem) iter.next(); 
  12.      if (item.isFormField()) { 
  13.         processFormField(item); 
  14.      } else { 
  15.         processUploadedFile(item); 
  16.      } 

八、Commons HttpClient

http://jakarta.apache.org/commons/httpclient/

说明:这个工具可以方便通过编程的方式去访问网站。

使用示例:最简单的Get操作


  1. GetMethod get = new GetMethod("http://jakarta.apache.org"); 
  2.  
  3. // execute method and handle any error responses. 
  4.  
  5. ... 
  6.  
  7. InputStream in = get.getResponseBodyAsStream(); 
  8. // Process the data from the input stream. 
  9. get.releaseConnection(); 

九、Commons IO

http://jakarta.apache.org/commons/io/

说明:可以看成是java.io的扩展,我觉得用起来非常方便。

使用示例:

1.读取Stream

标准代码:


  1. InputStream in = new URL( "http://jakarta.apache.org" ).openStream(); 
  2. try { 
  3.        InputStreamReader inR = new InputStreamReader( in ); 
  4.        BufferedReader buf = new BufferedReader( inR ); 
  5.        String line; 
  6.        while ( ( line = buf.readLine() ) != null ) { 
  7.           System.out.println( line ); 
  8.        } 
  9.   } finally { 
  10.     in.close(); 
  11.   } 

使用IOUtils


  1. InputStream in = new URL( "http://jakarta.apache.org" ).openStream(); 
  2. try { 
  3.     System.out.println( IOUtils.toString( in ) ); 
  4. } finally { 
  5.     IOUtils.closeQuietly(in); 

2.读取文件


  1. File file = new File("/commons/io/project.properties"); 
  2. List lines = FileUtils.readLines(file, "UTF-8"); 

3.察看剩余空间

long freeSpace = FileSystemUtils.freeSpace("C:/");

十、Commons JXPath

http://jakarta.apache.org/commons/jxpath/

说明:Xpath你知道吧,那么JXpath就是基于Java对象的Xpath,也就是用Xpath对Java对象进行查询。这个东西还是很有想像力的。

使用示例:

Address address = (Address)JXPathContext.newContext(vendor).
getValue("locations[address/zipCode='90210']/address");

上述代码等同于


  1. Address address = null; 
  2. Collection locations = vendor.getLocations(); 
  3. Iterator it = locations.iterator(); 
  4. while (it.hasNext()){ 
  5.     Location location = (Location)it.next(); 
  6.     String zipCode = location.getAddress().getZipCode(); 
  7.     if (zipCode.equals("90210")){ 
  8.        address = location.getAddress(); 
  9.         break; 
  10.     } 

十一、Commons Lang

http://jakarta.apache.org/commons/lang/

说明:这个工具包可以看成是对java.lang的扩展。提供了诸如StringUtils, StringEscapeUtils, RandomStringUtils, Tokenizer, WordUtils等工具类。

十二、Commons Logging

http://jakarta.apache.org/commons/logging/

说明:你知道log4j吗?

十三、Commons Math

http://jakarta.apache.org/commons/math/

说明:看名字你就应该知道这个包是用来干嘛的了吧。这个包提供的功能有些和Commons Lang重复了,但是这个包更专注于做数学工具,功能更强大。

十四、Commons Net

http://jakarta.apache.org/commons/net/

说明:这个包还是很实用的,封装了很多网络协议。

1. FTP
2. NNTP
3. SMTP
4. POP3
5. Telnet
6. TFTP
7. Finger
8. Whois
9. rexec/rcmd/rlogin
10. Time (rdate) and Daytime
11. Echo
12. Discard
13. NTP/SNTP

使用示例:

TelnetClient telnet = new TelnetClient();
telnet.connect( "192.168.1.99", 23 );
InputStream in = telnet.getInputStream();
PrintStream out = new PrintStream( telnet.getOutputStream() );
...
telnet.close();

十五、Commons Validator

http://jakarta.apache.org/commons/validator/

说明:用来帮助进行验证的工具。比如验证Email字符串,日期字符串等是否合法。

使用示例:


  1. // Get the Date validator 
  2. DateValidator validator = DateValidator.getInstance(); 
  3. // Validate/Convert the date 
  4. Date fooDate = validator.validate(fooString, "dd/MM/yyyy"); 
  5. if (fooDate == null) { 
  6.     // error...not a valid date 
  7.     return; 

十六、Commons Virtual File System

http://jakarta.apache.org/commons/vfs/

说明:提供对各种资源的访问接口。支持的资源类型包括

1. CIFS
2. FTP
3. Local Files
4. HTTP and HTTPS
5. SFTP
6. Temporary Files
7. WebDAV
8. Zip, Jar and Tar (uncompressed, tgz or tbz2)
9. gzip and bzip2
10. res
11. ram

这个包的功能很强大,极大的简化了程序对资源的访问。

使用示例:

从jar中读取文件


  1. // Locate the Jar file 
  2. FileSystemManager fsManager = VFS.getManager(); 
  3. FileObject jarFile = fsManager.resolveFile( "jar:lib/aJarFile.jar" ); 
  4.  
  5. // List the children of the Jar file 
  6. FileObject[] children = jarFile.getChildren(); 
  7. System.out.println( "Children of " + jarFile.getName().getURI() ); 
  8. for ( int i = 0; i < children.length; i++ ){ 
  9.     System.out.println( children[ i ].getName().getBaseName() ); 

从smb读取文件

StaticUserAuthenticator auth = new StaticUserAuthenticator("username", "password", null);
FileSystemOptions opts = new FileSystemOptions();
DefaultFileSystemConfigBuilder.getInstance().setUserAuthenticator(opts, auth);
FileObject fo = VFS.getManager().resolveFile("smb://host/anyshare/dir", opts);

来源:51CTO

时间: 2024-07-29 07:33:13

Apache Commons 工具集使用简介的相关文章

java-框架-apache.commons.*工具

Apache Commons类库 1.1. 开篇 在Java的世界,有很多(成千上万)开源的框架,有成功的,也有不那么成功的,有声名显赫的,也有默默无闻的.在我看来,成功而默默无闻的那些框架值得我们格外的尊敬和关注,Jakarta Commons就是这样的一个框架.如果你至少参与了一个中型规模的Java项目,那么我想有超过一大半的机会你都接触和使用到了Jakarta Commons,不管你自己有没有察觉.就我所知,除了Apache Jakarta其他许多开源框架之外,不少所谓的商业框架其实内部有

研究人员重提影响广泛的 Java 工具集 RCE 漏洞

一月份,安全研究人员Gabriel Lawrence和Chris Frohoff公布了一个影响范围相当广的Apache Commons工具集远程代码执行(RCE)漏洞,由于Apache Commons工具集几乎是JAVA技术平台中应用的最广泛的工具库,因此影响几乎遍及整个JAVA阵营.但是由于漏洞非常高深且难以理解,尽管研究人 员们尽了最大的努力呼吁人们引起注意,在漏洞公开后近乎一年内该问题仍未得到广泛重视.近日,知名博客Matthias Kaiser在节目中重谈该问题,并让Foxglove安全

Apache commons简介

apache Apache Commons是一个非常有用的工具包,解决各种实际的通用问题,下面是一个简述表,详细信息访问http://jakarta.apache.org/commons/index.html BeanUtilsCommons-BeanUtils 提供对 Java 反射和自省API的包装 BetwixtBetwixt提供将 JavaBean 映射至 XML 文档,以及相反映射的服务. ChainChain 提供实现组织复杂的处理流程的"责任链模式". CLICLI 提供

使用 Apache Commons CLI 开发命令行工具示例

概念说明 Apache Commons CLI 简介         Apache Commons CLI 是 Apache 下面的一个解析命令行输入的工具包,该工具包还提供了自动生成输出帮助文档的功能.     Apache Commons CLI 支持多种输入参数格式,主要支持的格式有以下几种: POSIX(Portable Operating System Interface of Unix)中的参数形式,例如 tar -zxvf foo.tar.gz GNU 中的长参数形式,例如 du

[Apache commons系列]DBUtils简介-3.示例代码

inkfish原创,请勿商业性质转载,转载请注明来源(http://blog.csdn.net/inkfish ). DbUtils是一个小型的类库,这里通过具体实例来说明如何使用DbUtils.示例分为3个类:DbUtilsExample演示了如何使用DbUtils 类:QueryRunnerExample 演示了如何使用QueryRunner .ResultSetHandler :User 类为一个JavaBean,对应于数据库中的表格.示例采用MySQL为数据库,使用JDBC4.0驱动(最

[Apache commons系列]DBUtils简介-2.核心类简介

inkfish原创,请勿商业性质转载,转载请注明来源(http://blog.csdn.net/inkfish ). DbUtils是一个小型的类库,不需要也不值得花太长的时间去熟悉每一个类.DbUtils核心其实只有三个类/接口,即QueryRunner .ResultSetHandler 和DbUtls (官方文档中写的是前两个).(来源:http://blog.csdn.net/inkfish)   一.下面先过一下DbUtils的几个包(package):(来源:http://blog.

apache utils工具类-怎么学习Apache commons utils类

问题描述 怎么学习Apache commons utils类 本人菜鸟一个,最近在看apache commons源码,发现里面有好多好多的工具类啊, 真心佩服大牛们的默默付出,但是太多了,看不过来啊,怎么办?难道全部都要记住么 解决方案 学好英语就可以了,java函数的命名都是英文单词,如果你能理解字面上的意思,不用记忆,你就自动知道了90%的函数的作用.剩下10%,看看文档源码或者google下,也就分分钟搞定. 解决方案二: Apache官网 这个里面有如何使用和快速入门和API 解决方案三

Apache Commons 常用工具类整理

其实一直都在使用常用工具类,只是从没去整理过,今天空了把一些常用的整理一下吧 怎么使用的一看就明白,另外还有注释,最后的使用pom引入的jar包   public class ApacheCommonsTest { /** * 从一个entity中把属性复制进另外一个entity中 * * @throws Exception */ @Test public void testCopyNewBean() throws Exception { StuForm form = new StuForm("

写一个ORM框架的第一步(Apache Commons DbUtils)

新一次的内部提升开始了,如果您想写一个框架从Apache Commons DbUtils开始学习是一种不错的选择,我们先学习应用这个小"框架"再把源代码理解,然后写一个属于自己的ORM框架不是梦. 一.简介 DbUtils是Apache下commons工具集中的一个小工具,它主要是对JDBC封装的ORM小工具,简化了JDBC的操作.之所以把它称之为工具而不是框架,是因为它和其他的ORM框架还是由很大的区别(例如Hibernate).DbUtils并不支持所谓的聚合关联映射.缓存机制.实