麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 學院 > 開發設計 > 正文

Apache Commons工具集簡介

2019-11-11 04:58:57
字體:
來源:轉載
供稿:網友

Apache 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)。

傳統方法如下:

//得到TeacherFormTeacherForm teacherForm=(TeacherForm)form;//構造Teacher對象Teacher teacher=new Teacher();//賦值teacher.setName(teacherForm.getName());teacher.setAge(teacherForm.getAge());teacher.setGender(teacherForm.getGender());teacher.setMajor(teacherForm.getMajor());teacher.setDepartment(teacherForm.getDepartment());//持久化Teacher對象到數據庫HibernateDAO= ;HibernateDAO.save(teacher);

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

//得到TeacherFormTeacherForm teacherForm=(TeacherForm)form;//構造Teacher對象Teacher teacher=new Teacher();//賦值BeanUtils.copyPRoperties(teacher,teacherForm);//持久化Teacher對象到數據庫HibernateDAO= ;HibernateDAO.save(teacher);

二、Commons cli

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

說明:這是一個處理命令的工具。比如main方法輸入的string[]需要解析。你可以預先定義好參數的規則,然后就可以調用CLI來解析。

使用示例:

// create Options objectOptions options = new Options();// add t option, option is the command parameter, false indicates that// this parameter is not required.options.addOption(“t”, false, “display current time”);options.addOption("c", true, "country code");CommandLineParser parser = new PosixParser();CommandLine cmd = parser.parse( options, args);if(cmd.hasOption("t")) {   // print the date and time}else {   // print the date}// get c option valueString countryCode = cmd.getOptionValue("c");if(countryCode == null) {    // print default date}else {    // 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的擴展。

使用示例:舉一個簡單的例子

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

五、Commons Configuration

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

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

1. Properties files2. xml documents3. Property list files (.plist)4. JNDI5. JDBC Datasource6. System properties7. Applet parameters8. Servlet parameters

舉一個Properties的簡單例子:

# usergui.properties, definining the GUI,colors.background = #FFFFFFcolors.foreground = #000080window.width = 500window.height = 300PropertiesConfiguration config = new PropertiesConfiguration("usergui.properties");config.setProperty("colors.background", "#000000);config.save();config.save("usergui.backup.properties);//save a copyInteger integer = config.getInteger("window.width");

六、Commons DBCP

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 handlerObject[] result = (Object[]) run.query("SELECT * FROM Person WHERE name=?", "John Doe");

八、Commons FileUpload

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

說明:jsp的上傳文件功能怎么做呢?

使用示例:

// Create a factory for disk-based file itemsFileItemFactory factory = new DiskFileItemFactory();// Create a new file upload handlerServletFileUpload upload = new ServletFileUpload(factory);// Parse the requestList /* FileItem */ items = upload.parseRequest(request);// Process the uploaded itemsIterator iter = items.iterator();while (iter.hasNext()) {     FileItem item = (FileItem) iter.next();     if (item.isFormField()) {        processFormField(item);     } else {        processUploadedFile(item);     }}

九、Commons HttpClient

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

說明:這個工具可以方便通過編程的方式去訪問網站。

最簡單的Get操作:

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

十、Commons IO

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

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

使用示例:

1.讀取Stream

標準代碼:

InputStream in = new URL( "http://jakarta.apache.org" ).openStream();try {       InputStreamReader inR = new InputStreamReader( in );       BufferedReader buf = new BufferedReader( inR );       String line;       while ( ( line = buf.readLine() ) != null ) {          System.out.println( line );       }  } finally {    in.close();  }

使用IOUtils:

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

2.讀取文件

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

3.察看剩余空間

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

十一、Commons JXPath

http://commons.apache.org/proper/commons-jxpath/users-guide.html

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

說明:Xpath你知道吧,那么JXpath就是基于Java對象的Xpath,也就是用Xpath對Java對象進行查詢。這個東西還是很有想像力的。

使用示例:

Address address = (Address)JXPathContext.newContext(vendor).getValue("locations[address/z上述代碼等同于:

Address address = null;Collection locations = vendor.getLocations();Iterator it = locations.iterator();while (it.hasNext()){    Location location = (Location)it.next();    String zipCode = location.getAddress().getZipCode();    if (zipCode.equals("90210")){       address = location.getAddress();        break;    }}

十二、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. FTP2. NNTP3. SMTP4. POP35. Telnet6. TFTP7. Finger8. Whois9. rexec/rcmd/rlogin10. Time (rdate) and Daytime11. Echo12. Discard13. 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字符串,日期字符串等是否合法。

使用示例:

// Get the Date validatorDateValidator validator = DateValidator.getInstance();// Validate/Convert the dateDate fooDate = validator.validate(fooString, "dd/MM/yyyy");if (fooDate == null) {    // error...not a valid date    return;}

十七、Commons Virtual File System

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

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

1. CIFS2. FTP3. Local Files4. HTTP and HTTPS5. SFTP6. Temporary Files7. WebDAV8. Zip, Jar and Tar (uncompressed, tgz or tbz2)9. gzip and bzip210. res11. ram

這個包的功能很強大,極大的簡化了程序對資源的訪問。

使用示例:

從jar中讀取文件:

// Locate the Jar fileFileSystemManager fsManager = VFS.getManager();FileObject jarFile = fsManager.resolveFile( "jar:lib/aJarFile.jar" );// List the children of the Jar fileFileObject[] children = jarFile.getChildren();System.out.println( "Children of " + jarFile.getName().getURI() );for ( int i = 0; i < children.length; i++ ){    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);

 

其他的我覺得都還挺贊的,就是有一點,BeanUtils 不建議你使用,雖然它帶來的好處是減少了冗余代碼,但是帶來的問題是編譯期很多問題不會被找出來,然后就會出現運行期莫名其妙有些property為null了,特別是迭代更新比較快的項目,這樣做弊大于利,還有一點,從分層的角度來看,其實vo、bo、do等它代表的含義本來就不一樣,直接BeanUtils來拷貝,也是有點蛋疼的。

轉載至:https://my.oschina.net/u/2391658/blog/713541


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 日本特级a一片免费观看 | 欧美日韩在线视频观看 | av免费在线观看免费 | 免费在线观看毛片 | 国产精品久久久久国产精品三级 | 欧美成人午夜 | 久久精品视频日本 | 国产日韩a | 极品销魂一区二区三区 | 国产九色视频在线观看 | 久久精品99久久久久久2456 | 精品国产一区二区三区久久久蜜 | 国产1区2区3区中文字幕 | 爱福利视频 | 97人人草 | 777午夜精品视频在线播放 | 精品国产三级a | 九九热在线免费观看视频 | 精品国产一区二区三区成人影院 | 污黄视频在线播放 | 亚洲国产视频在线 | 人人做人人看 | www国产免费 | 91一区二区在线观看 | 俄罗斯16一20sex牲色另类 | 久草在线小说 | 成年免费大片黄在线观看岛国 | 18被视频免费观看视频 | 午夜视频在线观看免费视频 | 九艹在线| 精品在线观看一区二区三区 | 国产一级一国产一级毛片 | 毛片一级片 | 一级黄色大片在线观看 | 黄色大片高清 | 日本aaa一级片| 久久久久久久久久久亚洲 | 黄色免费大片 | 一区二区三区在线播放视频 | 国产一级在线观看视频 | 污黄视频在线观看 |