使用JAVA的JFinal框架 1.上传文件模型类UploadFile /** * Copyright (c) 2011-2017, James Zhan 詹波 (jfinal@126.com). * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may o…
文件IO 相关的包:java.io文件——API 1.Java.io.File类的使用(1)两种路径绝对路径:相对于当前路径:当前为 “工程名”(2)File类创建,对象为一个文件/目录,可能存在或不存在.File f1 = new File(“d:/io/hello.txt”);File f2 = new File(“hello.txt”);File f3 = new File(“d:/io”);(3)对象与平台无关(4)方法:仅涉及如何创建.删除.重命名等.只要涉及内容的File是无能为力的…