public String substring(int first,int end)
返回一个新字符串,它是此字符串的一个子字符串。该子字符串从指定的start处开始,直到索引 end- 1 处的字符。因此,该子字符串的长度为 end-first。
public class first {
public static void main(String[] args) {
String a=“123456789”;
String b=a.substring(1,6);
System.out.println(b);
}
}
输出:23456
int indexOf(String str): 返回指定字符在字符串中第一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。
int indexOf(String first, int end): 返回从 first位置开始查找指定字符在字符串中第一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。
public class first {
public static void main(String[] args) {
String a=“000111-000111-000111”;
int index=a.indexOf("-");
String b=a.substring(index+1,index+6);
System.out.println(b);
}
}
输出:00011
public class second {
public static void main(String[] args) {
String a=“123-456.789”;
int first=a.indexOf("-");
int end=a.indexOf(".");
String b=a.substring(first+1,end);
System.out.println(b);
}
}
输出:456
java中filenamefileter中的accept(File file,String name)
这个方法是测试指定文件是否应该包含在某一文件列表中。
其中 file参数:被找到的文件所在的目录。
name:文件名称。
查找某文件,并获得文件的属性
1:封装次路径下所有文件后者文件夹的File数组
2:获取该目录下所有文件或者文件夹的File数组
3:遍历该File数组,得到每一个File对象,然后判断是否
是文件(判断文件的方法isFile(),判断文件夹的方法isDirectory())
是:查找该文件的属性。
//封装所有文件和文件夹的File数组
File file =new File(“F:\suclime网页制作\网页制作”);
//获取该目录下的所有文件夹或者文件的File数组
File[] aFile=file.listFiles();
for(File f : aFile) {
if (f.isFile()) {
if (f.getName().endsWith(".html")) {
System.out.println(f.getName());
}
}
}