FileUtils---FileUtils介绍

论坛 期权论坛 脚本     
匿名技术用户   2021-1-2 22:10   49   0
    1. import org.apache.commons.io.FileUtils;
    2. import org.apache.commons.io.filefilter.*;
    3. import org.apache.commons.logging.Log;
    4. import org.apache.commons.logging.LogFactory;
    5. import java.io.*;
    6. /**
    7. * 文件工具箱
    8. *
    9. * @author leizhimin 2008-12-15 13:59:16
    10. */
    11. public final class FileToolkit {
    12. private static final Log log = LogFactory.getLog(FileToolkit.class);
    13. /**
    14. * 复制文件或者目录,复制前后文件完全一样。
    15. *
    16. * @param resFilePath 源文件路径
    17. * @param distFolder 目标文件夹
    18. * @IOException 当操作发生异常时抛出
    19. */
    20. public static void copyFile(String resFilePath, String distFolder) throws IOException {
    21. File resFile = new File(resFilePath);
    22. File distFile = new File(distFolder);
    23. if (resFile.isDirectory()) {
    24. FileUtils.copyDirectoryToDirectory(resFile, distFile);
    25. } else if (resFile.isFile()) {
    26. FileUtils.copyFileToDirectory(resFile, distFile, true);
    27. }
    28. }
    29. /**
    30. * 删除一个文件或者目录
    31. *
    32. * @param targetPath 文件或者目录路径
    33. * @IOException 当操作发生异常时抛出
    34. */
    35. public static void deleteFile(String targetPath) throws IOException {
    36. File targetFile = new File(targetPath);
    37. if (targetFile.isDirectory()) {
    38. FileUtils.deleteDirectory(targetFile);
    39. } else if (targetFile.isFile()) {
    40. targetFile.delete();
    41. }
    42. }
    43. /**
    44. * 移动文件或者目录,移动前后文件完全一样,如果目标文件夹不存在则创建。
    45. *
    46. * @param resFilePath 源文件路径
    47. * @param distFolder 目标文件夹
    48. * @IOException 当操作发生异常时抛出
    49. */
    50. public static void moveFile(String resFilePath, String distFolder) throws IOException {
    51. File resFile = new File(resFilePath);
    52. File distFile = new File(distFolder);
    53. if (resFile.isDirectory()) {
    54. FileUtils.moveDirectoryToDirectory(resFile, distFile, true);
    55. } else if (resFile.isFile()) {
    56. FileUtils.moveFileToDirectory(resFile, distFile, true);
    57. }
    58. }
    59. /**
    60. * 重命名文件或文件夹
    61. *
    62. * @param resFilePath 源文件路径
    63. * @param newFileName 重命名
    64. * @return 操作成功标识
    65. */
    66. public static boolean renameFile(String resFilePath, String newFileName) {
    67. String newFilePath = StringToolkit.formatPath(StringToolkit.getParentPath(resFilePath) + "/" + newFileName);
    68. File resFile = new File(resFilePath);
    69. File newFile = new File(newFilePath);
    70. return resFile.renameTo(newFile);
    71. }
    72. /**
    73. * 读取文件或者目录的大小
    74. *
    75. * @param distFilePath 目标文件或者文件夹
    76. * @return 文件或者目录的大小,如果获取失败,则返回-1
    77. */
    78. public static long genFileSize(String distFilePath) {
    79. File distFile = new File(distFilePath);
    80. if (distFile.isFile()) {
    81. return distFile.length();
    82. } else if (distFile.isDirectory()) {
    83. return FileUtils.sizeOfDirectory(distFile);
    84. }
    85. return -1L;
    86. }
    87. /**
    88. * 判断一个文件是否存在
    89. *
    90. * @param filePath 文件路径
    91. * @return 存在返回true,否则返回false
    92. */
    93. public static boolean isExist(String filePath) {
    94. return new File(filePath).exists();
    95. }
    96. /**
    97. * 本地某个目录下的文件列表(不递归)
    98. *
    99. * @param folder ftp上的某个目录
    100. * @param suffix 文件的后缀名(比如.mov.xml)
    101. * @return 文件名称列表
    102. */
    103. public static String[] listFilebySuffix(String folder, String suffix) {
    104. IOFileFilter fileFilter1 = new SuffixFileFilter(suffix);
    105. IOFileFilter fileFilter2 = new NotFileFilter(DirectoryFileFilter.INSTANCE);
    106. FilenameFilter filenameFilter = new AndFileFilter(fileFilter1, fileFilter2);
    107. return new File(folder).list(filenameFilter);
    108. }
    109. /**
    110. * 将字符串写入指定文件(当指定的父路径中文件夹不存在时,会最大限度去创建,以保证保存成功!)
    111. *
    112. * @param res 原字符串
    113. * @param filePath 文件路径
    114. * @return 成功标记
    115. */
    116. public static boolean string2File(String res, String filePath) {
    117. boolean flag = true;
    118. BufferedReader bufferedReader = null;
    119. BufferedWriter bufferedWriter = null;
    120. try {
    121. File distFile = new File(filePath);
    122. if (!distFile.getParentFile().exists()) distFile.getParentFile().mkdirs();
    123. bufferedReader = new BufferedReader(new StringReader(res));
    124. bufferedWriter = new BufferedWriter(new FileWriter(distFile));
    125. char buf[] = new char[1024]; //字符缓冲区
    126. int len;
    127. while ((len = bufferedReader.read(buf)) != -1) {
    128. bufferedWriter.write(buf, 0, len);
    129. }
    130. bufferedWriter.flush();
    131. bufferedReader.close();
    132. bufferedWriter.close();
    133. } catch (IOException e) {
    134. flag = false;
    135. e.printStackTrace();
    136. }
    137. return flag;
    138. }
    139. }
    140. -------------------------------------------------------------------------------------------------------------
    141. import java.io.File;
    142. import java.util.ArrayList;
    143. import java.util.List;
    144. import java.util.Properties;
    145. /**
    146. * 字符串工具箱
    147. *
    148. * @author leizhimin 2008-12-15 22:40:12
    149. */
    150. public final class StringToolkit {
    151. /**
    152. * 将一个字符串的首字母改为大写或者小写
    153. *
    154. * @param srcString 源字符串
    155. * @param flag 大小写标识,ture小写,false大些
    156. * @return 改写后的新字符串
    157. */
    158. public static String toLowerCaseInitial(String srcString, boolean flag) {
    159. StringBuilder sb = new StringBuilder();
    160. if (flag) {
    161. sb.append(Character.toLowerCase(srcString.charAt(0)));
    162. } else {
    163. sb.append(Character.toUpperCase(srcString.charAt(0)));
    164. }
    165. sb.append(srcString.substring(1));
    166. return sb.toString();
    167. }
    168. /**
    169. * 将一个字符串按照句点(.)分隔,返回最后一段
    170. *
    171. * @param clazzName 源字符串
    172. * @return 句点(.)分隔后的最后一段字符串
    173. */
    174. public static String getLastName(String clazzName) {
    175. String[] ls = clazzName.split("\\.");
    176. return ls[ls.length - 1];
    177. }
    178. /**
    179. * 格式化文件路径,将其中不规范的分隔转换为标准的分隔符,并且去掉末尾的"/"符号。
    180. *
    181. * @param path 文件路径
    182. * @return 格式化后的文件路径
    183. */
    184. public static String formatPath(String path) {
    185. String reg0 = "\\\\+";
    186. String reg = "\\\\+|/+";
    187. String temp = path.trim().replaceAll(reg0, "/");
    188. temp = temp.replaceAll(reg, "/");
    189. if (temp.endsWith("/")) {
    190. temp = temp.substring(0, temp.length() - 1);
    191. }
    192. if (System.getProperty("file.separator").equals("\\")) {
    193. temp= temp.replace('/','\\');
    194. }
    195. return temp;
    196. }
    197. /**
    198. * 格式化文件路径,将其中不规范的分隔转换为标准的分隔符,并且去掉末尾的"/"符号(适用于FTP远程文件路径或者Web资源的相对路径)。
    199. *
    200. * @param path 文件路径
    201. * @return 格式化后的文件路径
    202. */
    203. public static String formatPath4Ftp(String path) {
    204. String reg0 = "\\\\+";
    205. String reg = "\\\\+|/+";
    206. String temp = path.trim().replaceAll(reg0, "/");
    207. temp = temp.replaceAll(reg, "/");
    208. if (temp.endsWith("/")) {
    209. temp = temp.substring(0, temp.length() - 1);
    210. }
    211. return temp;
    212. }
    213. public static void main(String[] args) {
    214. System.out.println(System.getProperty("file.separator"));
    215. Properties p = System.getProperties();
    216. System.out.println(formatPath("C:///\\xxxx\\\\\\\\\\///\\\\R5555555.txt"));
    217. // List<String> result = series2List("asdf | sdf|siii|sapp|aaat| ", "\\|");
    218. // System.out.println(result.size());
    219. // for (String s : result) {
    220. // System.out.println(s);
    221. // }
    222. }
    223. /**
    224. * 获取文件父路径
    225. *
    226. * @param path 文件路径
    227. * @return 文件父路径
    228. */
    229. public static String getParentPath(String path) {
    230. return new File(path).getParent();
    231. }
    232. /**
    233. * 获取相对路径
    234. *
    235. * @param fullPath 全路径
    236. * @param rootPath 根路径
    237. * @return 相对根路径的相对路径
    238. */
    239. public static String getRelativeRootPath(String fullPath, String rootPath) {
    240. String relativeRootPath = null;
    241. String _fullPath = formatPath(fullPath);
    242. String _rootPath = formatPath(rootPath);
    243. if (_fullPath.startsWith(_rootPath)) {
    244. relativeRootPath = fullPath.substring(_rootPath.length());
    245. } else {
    246. throw new RuntimeException("要处理的两个字符串没有包含关系,处理失败!");
    247. }
    248. if (relativeRootPath == null) return null;
    249. else
    250. return formatPath(relativeRootPath);
    251. }
    252. /**
    253. * 获取当前系统换行符
    254. *
    255. * @return 系统换行符
    256. */
    257. public static String getSystemLineSeparator() {
    258. return System.getProperty("line.separator");
    259. }
    260. /**
    261. * 将用“|”分隔的字符串转换为字符串集合列表,剔除分隔后各个字符串前后的空格
    262. *
    263. * @param series 将用“|”分隔的字符串
    264. * @return 字符串集合列表
    265. */
    266. public static List<String> series2List(String series) {
    267. return series2List(series, "\\|");
    268. }
    269. /**
    270. * 将用正则表达式regex分隔的字符串转换为字符串集合列表,剔除分隔后各个字符串前后的空格
    271. *
    272. * @param series 用正则表达式分隔的字符串
    273. * @param regex 分隔串联串的正则表达式
    274. * @return 字符串集合列表
    275. */
    276. private static List<String> series2List(String series, String regex) {
    277. List<String> result = new ArrayList<String>();
    278. if (series != null && regex != null) {
    279. for (String s : series.split(regex)) {
    280. if (s.trim() != null && !s.trim().equals("")) result.add(s.trim());
    281. }
    282. }
    283. return result;
    284. }
    285. /**
    286. * @param strList 字符串集合列表
    287. * @return 通过“|”串联为一个字符串
    288. */
    289. public static String list2series(List<String> strList) {
    290. StringBuffer series = new StringBuffer();
    291. for (String s : strList) {
    292. series.append(s).append("|");
    293. }
    294. return series.toString();
    295. }
    296. /**
    297. * 将字符串的首字母转为小写
    298. *
    299. * @param resStr 源字符串
    300. * @return 首字母转为小写后的字符串
    301. */
    302. public static String firstToLowerCase(String resStr) {
    303. if (resStr == null) {
    304. return null;
    305. } else if ("".equals(resStr.trim())) {
    306. return "";
    307. } else {
    308. StringBuffer sb = new StringBuffer();
    309. Character c = resStr.charAt(0);
    310. if (Character.isLetter(c)) {
    311. if (Character.isUpperCase(c))
    312. c = Character.toLowerCase(c);
    313. sb.append(resStr);
    314. sb.setCharAt(0, c);
    315. return sb.toString();
    316. }
    317. }
    318. return resStr;
    319. }
    320. /**
    321. * 将字符串的首字母转为大写
    322. *
    323. * @param resStr 源字符串
    324. * @return 首字母转为大写后的字符串
    325. */
    326. public static String firstToUpperCase(String resStr) {
    327. if (resStr == null) {
    328. return null;
    329. } else if ("".equals(resStr.trim())) {
    330. return "";
    331. } else {
    332. StringBuffer sb = new StringBuffer();
    333. Character c = resStr.charAt(0);
    334. if (Character.isLetter(c)) {
    335. if (Character.isLowerCase(c))
    336. c = Character.toUpperCase(c);
    337. sb.append(resStr);
    338. sb.setCharAt(0, c);
    339. return sb.toString();
    340. }
    341. }
    342. return resStr;
    343. }
    344. }
    import org.apache.commons.io.FileUtils; 
    import org.apache.commons.io.filefilter.*; 
    import org.apache.commons.logging.Log; 
    import org.apache.commons.logging.LogFactory;
    
    import java.io.*;
    
    /** 
    * 文件工具箱 
    * 
    * @author leizhimin 2008-12-15 13:59:16 
    */ 
    public final class FileToolkit { 
            private static final Log log = LogFactory.getLog(FileToolkit.class);
    
            /** 
             * 复制文件或者目录,复制前后文件完全一样。 
             * 
             * @param resFilePath 源文件路径 
             * @param distFolder    目标文件夹 
             * @IOException 当操作发生异常时抛出 
             */ 
            public static void copyFile(String resFilePath, String distFolder) throws IOException { 
                    File resFile = new File(resFilePath); 
                    File distFile = new File(distFolder); 
                    if (resFile.isDirectory()) { 
                            FileUtils.copyDirectoryToDirectory(resFile, distFile); 
                    } else if (resFile.isFile()) { 
                            FileUtils.copyFileToDirectory(resFile, distFile, true); 
                    } 
            }
    
            /** 
             * 删除一个文件或者目录 
             * 
             * @param targetPath 文件或者目录路径 
             * @IOException 当操作发生异常时抛出 
             */ 
            public static void deleteFile(String targetPath) throws IOException { 
                    File targetFile = new File(targetPath); 
                    if (targetFile.isDirectory()) { 
                            FileUtils.deleteDirectory(targetFile); 
                    } else if (targetFile.isFile()) { 
                            targetFile.delete(); 
                    } 
            }
    
            /** 
             * 移动文件或者目录,移动前后文件完全一样,如果目标文件夹不存在则创建。 
             * 
             * @param resFilePath 源文件路径 
             * @param distFolder    目标文件夹 
             * @IOException 当操作发生异常时抛出 
             */ 
            public static void moveFile(String resFilePath, String distFolder) throws IOException { 
                    File resFile = new File(resFilePath); 
                    File distFile = new File(distFolder); 
                    if (resFile.isDirectory()) { 
                            FileUtils.moveDirectoryToDirectory(resFile, distFile, true); 
                    } else if (resFile.isFile()) { 
                            FileUtils.moveFileToDirectory(resFile, distFile, true); 
                    } 
            }
    
    
            /** 
             * 重命名文件或文件夹 
             * 
             * @param resFilePath 源文件路径 
             * @param newFileName 重命名 
             * @return 操作成功标识 
             */ 
            public static boolean renameFile(String resFilePath, String newFileName) { 
                    String newFilePath = StringToolkit.formatPath(StringToolkit.getParentPath(resFilePath) + "/" + newFileName); 
                    File resFile = new File(resFilePath); 
                    File newFile = new File(newFilePath); 
                    return resFile.renameTo(newFile); 
            }
    
            /** 
             * 读取文件或者目录的大小 
             * 
             * @param distFilePath 目标文件或者文件夹 
             * @return 文件或者目录的大小,如果获取失败,则返回-1 
             */ 
            public static long genFileSize(String distFilePath) { 
                    File distFile = new File(distFilePath); 
                    if (distFile.isFile()) { 
                            return distFile.length(); 
                    } else if (distFile.isDirectory()) { 
                            return FileUtils.sizeOfDirectory(distFile); 
                    } 
                    return -1L; 
            }
    
            /** 
             * 判断一个文件是否存在 
             * 
             * @param filePath 文件路径 
             * @return 存在返回true,否则返回false 
             */ 
            public static boolean isExist(String filePath) { 
                    return new File(filePath).exists(); 
            }
    
            /** 
             * 本地某个目录下的文件列表(不递归) 
             * 
             * @param folder ftp上的某个目录 
             * @param suffix 文件的后缀名(比如.mov.xml) 
             * @return 文件名称列表 
             */ 
            public static String[] listFilebySuffix(String folder, String suffix) { 
                    IOFileFilter fileFilter1 = new SuffixFileFilter(suffix); 
                    IOFileFilter fileFilter2 = new NotFileFilter(DirectoryFileFilter.INSTANCE); 
                    FilenameFilter filenameFilter = new AndFileFilter(fileFilter1, fileFilter2); 
                    return new File(folder).list(filenameFilter); 
            }
    
            /** 
             * 将字符串写入指定文件(当指定的父路径中文件夹不存在时,会最大限度去创建,以保证保存成功!) 
             * 
             * @param res            原字符串 
             * @param filePath 文件路径 
             * @return 成功标记 
             */ 
            public static boolean string2File(String res, String filePath) { 
                    boolean flag = true; 
                    BufferedReader bufferedReader = null; 
                    BufferedWriter bufferedWriter = null; 
                    try { 
                            File distFile = new File(filePath); 
                            if (!distFile.getParentFile().exists()) distFile.getParentFile().mkdirs(); 
                            bufferedReader = new BufferedReader(new StringReader(res)); 
                            bufferedWriter = new BufferedWriter(new FileWriter(distFile)); 
                            char buf[] = new char[1024];         //字符缓冲区 
                            int len; 
                            while ((len = bufferedReader.read(buf)) != -1) { 
                                    bufferedWriter.write(buf, 0, len); 
                            } 
                            bufferedWriter.flush(); 
                            bufferedReader.close(); 
                            bufferedWriter.close(); 
                    } catch (IOException e) { 
                            flag = false; 
                            e.printStackTrace(); 
                    } 
                    return flag; 
            } 
    } 
    -------------------------------------------------------------------------------------------------------------
    import java.io.File;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Properties;
    
    
    /**
    * 字符串工具箱
    *
    * @author leizhimin 2008-12-15 22:40:12
    */
    public final class StringToolkit {
      /**
      * 将一个字符串的首字母改为大写或者小写
      *
      * @param srcString 源字符串
      * @param flag     大小写标识,ture小写,false大些
      * @return 改写后的新字符串
      */
      public static String toLowerCaseInitial(String srcString, boolean flag) {
        StringBuilder sb = new StringBuilder();
        if (flag) {
            sb.append(Character.toLowerCase(srcString.charAt(0)));
        } else {
            sb.append(Character.toUpperCase(srcString.charAt(0)));
        }
        sb.append(srcString.substring(1));
        return sb.toString();
      }
    
      /**
      * 将一个字符串按照句点(.)分隔,返回最后一段
      *
      * @param clazzName 源字符串
      * @return 句点(.)分隔后的最后一段字符串
      */
      public static String getLastName(String clazzName) {
        String[] ls = clazzName.split("\\.");
        return ls[ls.length - 1];
      }
    
      /**
      * 格式化文件路径,将其中不规范的分隔转换为标准的分隔符,并且去掉末尾的"/"符号。
      *
      * @param path 文件路径
      * @return 格式化后的文件路径
      */
      public static String formatPath(String path) {
        String reg0 = "\\\\+";
        String reg = "\\\\+|/+";
        String temp = path.trim().replaceAll(reg0, "/");
        temp = temp.replaceAll(reg, "/");
        if (temp.endsWith("/")) {
            temp = temp.substring(0, temp.length() - 1);
        }
        if (System.getProperty("file.separator").equals("\\")) {
          temp= temp.replace('/','\\');
        }
        return temp;
      }
    
      /**
      * 格式化文件路径,将其中不规范的分隔转换为标准的分隔符,并且去掉末尾的"/"符号(适用于FTP远程文件路径或者Web资源的相对路径)。
      *
      * @param path 文件路径
      * @return 格式化后的文件路径
      */
      public static String formatPath4Ftp(String path) {
        String reg0 = "\\\\+";
        String reg = "\\\\+|/+";
        String temp = path.trim().replaceAll(reg0, "/");
        temp = temp.replaceAll(reg, "/");
        if (temp.endsWith("/")) {
            temp = temp.substring(0, temp.length() - 1);
        }
        return temp;
      }
    
      public static void main(String[] args) {
        System.out.println(System.getProperty("file.separator"));
        Properties p = System.getProperties();
        System.out.println(formatPath("C:///\\xxxx\\\\\\\\\\///\\\\R5555555.txt"));
    
    //     List<String> result = series2List("asdf | sdf|siii|sapp|aaat| ", "\\|");
    //     System.out.println(result.size());
    //     for (String s : result) {
    //         System.out.println(s);
    //     }
      }
    
      /**
      * 获取文件父路径
      *
      * @param path 文件路径
      * @return 文件父路径
      */
      public static String getParentPath(String path) {
        return new File(path).getParent();
      }
    
      /**
      * 获取相对路径
      *
      * @param fullPath 全路径
      * @param rootPath 根路径
      * @return 相对根路径的相对路径
      */
      public static String getRelativeRootPath(String fullPath, String rootPath) {
        String relativeRootPath = null;
        String _fullPath = formatPath(fullPath);
        String _rootPath = formatPath(rootPath);
    
        if (_fullPath.startsWith(_rootPath)) {
            relativeRootPath = fullPath.substring(_rootPath.length());
        } else {
            throw new RuntimeException("要处理的两个字符串没有包含关系,处理失败!");
        }
        if (relativeRootPath == null) return null;
        else
            return formatPath(relativeRootPath);
      }
    
      /**
      * 获取当前系统换行符
      *
      * @return 系统换行符
      */
      public static String getSystemLineSeparator() {
        return System.getProperty("line.separator");
      }
    
      /**
      * 将用“|”分隔的字符串转换为字符串集合列表,剔除分隔后各个字符串前后的空格
      *
      * @param series 将用“|”分隔的字符串
      * @return 字符串集合列表
      */
      public static List<String> series2List(String series) {
        return series2List(series, "\\|");
      }
    
      /**
      * 将用正则表达式regex分隔的字符串转换为字符串集合列表,剔除分隔后各个字符串前后的空格
      *
      * @param series 用正则表达式分隔的字符串
      * @param regex 分隔串联串的正则表达式
      * @return 字符串集合列表
      */
      private static List<String> series2List(String series, String regex) {
        List<String> result = new ArrayList<String>();
        if (series != null && regex != null) {
            for (String s : series.split(regex)) {
              if (s.trim() != null && !s.trim().equals("")) result.add(s.trim());
            }
        }
        return result;
      }
    
      /**
      * @param strList 字符串集合列表
      * @return 通过“|”串联为一个字符串
      */
      public static String list2series(List<String> strList) {
        StringBuffer series = new StringBuffer();
        for (String s : strList) {
            series.append(s).append("|");
        }
        return series.toString();
      }
    
      /**
      * 将字符串的首字母转为小写
      *
      * @param resStr 源字符串
      * @return 首字母转为小写后的字符串
      */
      public static String firstToLowerCase(String resStr) {
        if (resStr == null) {
            return null;
        } else if ("".equals(resStr.trim())) {
            return "";
        } else {
            StringBuffer sb = new StringBuffer();
            Character c = resStr.charAt(0);
            if (Character.isLetter(c)) {
              if (Character.isUpperCase(c))
                c = Character.toLowerCase(c);
              sb.append(resStr);
              sb.setCharAt(0, c);
              return sb.toString();
            }
        }
        return resStr;
      }
    
      /**
      * 将字符串的首字母转为大写
      *
      * @param resStr 源字符串
      * @return 首字母转为大写后的字符串
      */
      public static String firstToUpperCase(String resStr) {
        if (resStr == null) {
            return null;
        } else if ("".equals(resStr.trim())) {
            return "";
        } else {
            StringBuffer sb = new StringBuffer();
            Character c = resStr.charAt(0);
            if (Character.isLetter(c)) {
              if (Character.isLowerCase(c))
                c = Character.toUpperCase(c);
              sb.append(resStr);
              sb.setCharAt(0, c);
              return sb.toString();
            }
        }
        return resStr;
      }
    
    }
    

    Java的文件操作太基础,缺乏很多实用工具,比如对目录的操作,支持就非常的差了。如果你经常用Java操作文件或文件夹,你会觉得反复编写这些代码是令人沮丧的问题,而且要大量用到递归。

    下面是的一个解决方案,借助Apache Commons IO工具包(commons-io-1.1.jar)来简单实现文件(夹)的复制、移动、删除、获取大小等操作。

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:7942463
帖子:1588486
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP