摘要:
sql如下: <select id="selectAllDistrict" resultType="java.util.Map"> select id AS "id",district as "district" from sys_areas where id = 428572; </select> 阅读全文
摘要:
一、概述 java.io.File 类是文件和目录路径名(相对路径名或绝对路径名)的抽象表示,主要用于文件和目录的创建、查找和删除等操作。 二、构造方法 public File(String pathname) :通过将给定的路径名字符串转换为抽象路径名来创建新的 File实例。 public Fi 阅读全文