不知道对不对
我分开写的
判断格式的:
public class test1
{
public static void main(String args[])
{
String str ="bb.txt";
int aa = str.lastIndexOf(".");
String ex = str.substring(aa+1,aa+4);
if(ex.equals("txt"))
{
System.out.print("aaa");
}
}
}
判断大小的:
import
*;
public
class
TT1{
public
static
void
main(String[]
args)
throws IOException{
try{
FileInputStream
stream=new
FileInputStream("d:/a.txt");
int len=stream.available();
if(len/1024/1024>1)
{
System.out.println(len);
}
}
catch(IOException
e)
{
System.out.println(e);}
}
}
要是做网页的话 可以用JS来判断