07 2016 档案

摘要:博客地址: http://blog.csdn.net/wangchsh2008/article/details/8812857 阅读全文
posted @ 2016-07-27 16:38 oftenlin 阅读(1560) 评论(0) 推荐(0)
摘要:利用Maven的appassembler-maven-plugin插件,就可以实现自动打包可运行的脚本,还可以跨平台。 <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>appassembler-maven-plugin</artif 阅读全文
posted @ 2016-07-27 14:07 oftenlin 阅读(9597) 评论(0) 推荐(0)
摘要:在 pom.xml 中添加如下代码: <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.1< 阅读全文
posted @ 2016-07-27 13:59 oftenlin 阅读(1187) 评论(0) 推荐(0)
摘要:(1)File 类的基础用法 // 1.创建 一个file 对象File file = new File("D:\\aaa");// 2.判断此 file 是否是一个文件夹file.isDirectory();// 3.判断此 file 是否存在file.exist();// 4.创建一个 Dire 阅读全文
posted @ 2016-07-22 10:31 oftenlin 阅读(151) 评论(0) 推荐(0)