- /*
- 编写一个可以获取文件扩展名的函数,形参接收一个文件名字符串,返回一个扩展名字符串。
- */
- package com.itheima;
- public class Test07
- {
- public static void main(String[] args)
- {
- String f=file("Tetava.java");
- System.out.println(f);
- }
-
- public static String file(String filename)//封装函数功能返回文件字符串的后缀名
- {
- int temp=0;
- char[]ch=filename.toCharArray();
- for(int x=0;x<ch.length;x++)//此函数返回字符串中最后一次出现”.“的索引
- {
- if(ch[x]!='.')
- ;
- else
- temp=x;
- }
- return filename.substring(temp+1);//substring()该函数返回指定索引之后的该字符串的子字符串
- }
- }
复制代码 |
|