摘要:
style="display:none" 表示完全隐藏,与没有该元素一样style="visibility:hidden" 表示内容隐藏,但是内容所占的位置还在。 阅读全文
摘要:
View Code public class CompressUtil{ /** * <一句话功能简述> <功能详细描述> * * @param args * @throws Exception * @see [类、类#方法、类#成员] */ public static void main(String[] args) throws Exception { // TODO Auto-generated method stub compress("e:\\app", "e:"); } pu... 阅读全文
摘要:
复制文件夹View Code /** * <一句话功能简述>复制文件夹 <功能详细描述> * * @param srcDir 文件夹的绝对路径 * @param destDir 目标绝对路径 * @throws Exception * @see [类、类#方法、类#成员] */ public static void copyFolder(String srcDir, String destDir) throws Exception { File srcFile = new File(srcDir); ... 阅读全文
摘要:
项目快结束了,人清闲了,写写小工具,嘿嘿……复制文件 /** * 复制文件到目录 <功能详细描述> * * @param srcPath 文件绝对路径 * @param destDirPath 目标文件夹绝对路径 * @throws Exception * @see [类、类#方法、类#成员] */ public static void copyFile(String srcPath, String destDirPath) throws Exception { File srcfile = new File... 阅读全文
摘要:
理解java web开发浏览器与服务端的编码原理,有效解决开发过程的乱码问题。 阅读全文