日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
ApacheCommons工具集使用簡介

pache Commons包含了很多開源的工具,用于解決平時(shí)編程經(jīng)常會(huì)遇到的問題,減少重復(fù)勞動(dòng)。我選了一些比較常用的項(xiàng)目做簡單介紹。文中用了很多網(wǎng)上現(xiàn)成的東西,我只是做了一個(gè)匯總整理。

一、Commons BeanUtils

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

說明:針對(duì)Bean的一個(gè)工具集。由于Bean往往是有一堆get和set組成,所以BeanUtils也是在此基礎(chǔ)上進(jìn)行一些包裝。

使用示例:功能有很多,網(wǎng)站上有詳細(xì)介紹。一個(gè)比較常用的功能是Bean Copy,也就是copy bean的屬性。如果做分層架構(gòu)開發(fā)的話就會(huì)用到,比如從PO(Persistent Object)拷貝數(shù)據(jù)到VO(Value Object)。

傳統(tǒng)方法如下:

 
 
  1. //得到TeacherForm
  2. TeacherForm teacherForm=(TeacherForm)form;
  3. //構(gòu)造Teacher對(duì)象
  4. Teacher teacher=new Teacher();
  5. //賦值
  6. teacher.setName(teacherForm.getName());
  7. teacher.setAge(teacherForm.getAge());
  8. teacher.setGender(teacherForm.getGender());
  9. teacher.setMajor(teacherForm.getMajor());
  10. teacher.setDepartment(teacherForm.getDepartment());
  11. //持久化Teacher對(duì)象到數(shù)據(jù)庫
  12. HibernateDAO= ;
  13. HibernateDAO.save(teacher);

使用BeanUtils后,代碼就大大改觀了,如下所示:

 
 
  1. //得到TeacherForm
  2. TeacherForm teacherForm=(TeacherForm)form;
  3. //構(gòu)造Teacher對(duì)象
  4. Teacher teacher=new Teacher();
  5. //賦值
  6. BeanUtils.copyProperties(teacher,teacherForm);
  7. //持久化Teacher對(duì)象到數(shù)據(jù)庫
  8. HibernateDAO= ;
  9. HibernateDAO.save(teacher);

二、Commons CLI

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

說明:這是一個(gè)處理命令的工具。比如main方法輸入的string[]需要解析。你可以預(yù)先定義好參數(shù)的規(guī)則,然后就可以調(diào)用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. options.addOption(“t”, false, “display current time”);
  6. options.addOption("c", true, "country code");
  7. CommandLineParser parser = new PosixParser();
  8. CommandLine cmd = parser.parse( options, args);
  9. if(cmd.hasOption("t")) {
  10.    // print the date and time
  11. }else {
  12.    // print the date
  13. }
  14. // get c option value
  15. String countryCode = cmd.getOptionValue("c");
  16. if(countryCode == null) {
  17.     // print default date
  18. }else {
  19.     // print date for country specified by countryCode
  20. }

三、Commons Codec

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

說明:這個(gè)工具是用來編碼和解碼的,包括Base64,URL,Soundx等等。用這個(gè)工具的人應(yīng)該很清楚這些,我就不多介紹了。

四、Commons Collections

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

說明:你可以把這個(gè)工具看成是java.util的擴(kuò)展。

使用示例:舉一個(gè)簡單的例子

 
 
  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/

說明:這個(gè)工具是用來幫助處理配置文件的,支持很多種存儲(chǔ)方式

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

使用示例:舉一個(gè)Properties的簡單例子

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

說明:Database Connection pool, Tomcat就是用的這個(gè),不用我多說了吧,要用的自己去網(wǎng)站上看說明。

六、Commons DbUtils

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

說明:我以前在寫數(shù)據(jù)庫程序的時(shí)候,往往把數(shù)據(jù)庫操作單獨(dú)做一個(gè)包。DbUtils就是這樣一個(gè)工具,以后開發(fā)不用再重復(fù)這樣的工作了。值得一體的是,這個(gè)工具并不是現(xiàn)在流行的OR-Mapping工具(比如Hibernate),只是簡化數(shù)據(jù)庫操作,比如

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. // Parse the request
  6. List /* FileItem */ items = upload.parseRequest(request);
  7. // Process the uploaded items
  8. Iterator iter = items.iterator();
  9. while (iter.hasNext()) {
  10.      FileItem item = (FileItem) iter.next();
  11.      if (item.isFormField()) {
  12.         processFormField(item);
  13.      } else {
  14.         processUploadedFile(item);
  15.      }
  16. }

八、Commons HttpClient

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

說明:這個(gè)工具可以方便通過編程的方式去訪問網(wǎng)站。

使用示例:最簡單的Get操作

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

九、Commons IO

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

說明:可以看成是java.io的擴(kuò)展,我覺得用起來非常方便。

使用示例:

1.讀取Stream

標(biāo)準(zhǔn)代碼:

 
 
  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);
  6. }

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對(duì)象的Xpath,也就是用Xpath對(duì)Java對(duì)象進(jìn)行查詢。這個(gè)東西還是很有想像力的。

使用示例:

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.     }
  11. }

十一、Commons Lang

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

說明:這個(gè)工具包可以看成是對(duì)java.lang的擴(kuò)展。提供了諸如StringUtils, StringEscapeUtils, RandomStringUtils, Tokenizer, WordUtils等工具類。

十二、Commons Logging

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

說明:你知道log4j嗎?

十三、Commons Math

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

說明:看名字你就應(yīng)該知道這個(gè)包是用來干嘛的了吧。這個(gè)包提供的功能有些和Commons Lang重復(fù)了,但是這個(gè)包更專注于做數(shù)學(xué)工具,功能更強(qiáng)大。

十四、Commons Net

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

說明:這個(gè)包還是很實(shí)用的,封裝了很多網(wǎng)絡(luò)協(xié)議。

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/

說明:用來幫助進(jìn)行驗(yàn)證的工具。比如驗(yàn)證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;
  8. }

十六、Commons Virtual File System

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

說明:提供對(duì)各種資源的訪問接口。支持的資源類型包括

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

這個(gè)包的功能很強(qiáng)大,極大的簡化了程序?qū)Y源的訪問。

使用示例:

從jar中讀取文件

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

從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);


網(wǎng)頁標(biāo)題:ApacheCommons工具集使用簡介
網(wǎng)站URL:http://m.5511xx.com/article/cdhsdii.html