index索引,substring子字符串

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());
    }
   }
  }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值