宗策

导航

上一页 1 ··· 5 6 7 8 9 10 下一页

2019年12月5日 #

RandomAccessFile(),读写文件数据的API,以及复制文件操作

摘要: package seday03;import java.io.File;import java.io.RandomAccessFile; import java.io.IOException; /*** * @author xingsir*java.io.RandomAccessFile * 专门用 阅读全文

posted @ 2019-12-05 17:14 宗策 阅读(517) 评论(0) 推荐(0) 编辑

FileFilter(),文件过滤器操作

摘要: package seday03; import java.io.File;import java.io.FileFilter; /*** listFiles的重载方法允许我们传入一个文件过滤器:File[] listFiles(FileFilter filter)* 该方法会将当前File对象表示的 阅读全文

posted @ 2019-12-05 15:07 宗策 阅读(2323) 评论(0) 推荐(0) 编辑

File获取当前目录下的所有子项 listFiles()

摘要: package seday03; import java.io.File; /** * 获取一个目录中的所有子项 * @author xingsir */public class ListFilesDemo { public static void main(String[] args) { /* 阅读全文

posted @ 2019-12-05 10:20 宗策 阅读(1416) 评论(0) 推荐(0) 编辑

2019年12月4日 #

File 创建一个空目录,创建一个多级目录,删除一个目录

摘要: package seday03; import java.io.File; /** * 创建一个空目录,* @author xingsir*/public class MkDirDemo { public static void main(String[] args) { /* * 在当前目录下新建 阅读全文

posted @ 2019-12-04 17:20 宗策 阅读(1686) 评论(0) 推荐(0) 编辑

File文件的创建,删除 createNewFile() delete()

摘要: package seday03; import java.io.File;import java.io.IOException; /*** 使用File新建一个test1.txt文件* @author xingsir*/public class CreateNewFileDemo { public 阅读全文

posted @ 2019-12-04 17:10 宗策 阅读(913) 评论(0) 推荐(0) 编辑

File操作,访问文件或目录的属性信息

摘要: package seday03; import java.io.File;//记得导入File /** * File的每一个实例用于表示文件系统中的一个文件或目录 * 使用File可以: * 1:访问其表示的文件或目录的属性信息 * 2:创建或删除文件,目录 * 3:访问一个目录中的所有子项 * 但 阅读全文

posted @ 2019-12-04 17:06 宗策 阅读(448) 评论(0) 推荐(0) 编辑

2019年12月3日 #

String与StringBuilder性能比对

摘要: //String与StringBuilder性能比对package seday01;/** * String修改字符串带来的性能开销 * @author xingsir * */public class StringDemo2 { public static void main(String[] a 阅读全文

posted @ 2019-12-03 17:05 宗策 阅读(679) 评论(0) 推荐(0) 编辑

String replaceAll(String regex,String str)满足正则表达式的部分替换为给定内容

摘要: package seday02;/*** * String replaceAll(String regex,String str)* @author xingsir*/public class ReplaceAllDemo { public static void main(String[] arg 阅读全文

posted @ 2019-12-03 16:58 宗策 阅读(512) 评论(0) 推荐(0) 编辑

boolean matches(String regex)正则表达式判断当前字符串是否满足格式要求

摘要: package seday02;/*** boolean matches(String regex) * 使用给定正则表达式判断当前字符串是否满足格式要求,满足 则返回true. * 注意:此方法是做完全匹配验证,无论是否添加正则表达式中的边界匹配符"^...$"都是做全匹配验证 * @author 阅读全文

posted @ 2019-12-03 16:52 宗策 阅读(1980) 评论(0) 推荐(1) 编辑

2019年11月29日 #

String trim() ,去除当前字符串两边的空白字符

摘要: package seday01;/** * String trim() * 去除当前字符串两边的空白字符 * @author xingsir */public class TrimDemo { public static void main(String[] args) { String str=" 阅读全文

posted @ 2019-11-29 15:04 宗策 阅读(1071) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 下一页