本文介绍了Android的:如何检查文件是否是形象?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
可能重复:
知道,如果一个文件是Java / Android的一个图像
我如何检查的文件,如果它是一个形象?类似以下内容:
How can I check a file if it is an image?like following:
如果(file.isImage)......
if(file.isImage)....
如果这是无法实现的标准库,我怎么能做到这一点的MagickImage的lib?
If it's not possible with standard libraries, how can I do it with the MagickImage lib?
在此先感谢!
推荐答案
试试这个code亲爱的。
Try This Code Dear.
public class ImageFileFilter implements FileFilter
{
File file;
private final String[] okFileExtensions = new String[] {"jpg", "png", "gif","jpeg"};
/**
*
*/
public ImageFileFilter(File newfile)
{
this.file=newfile;
}
public boolean accept(File file)
{
for (String extension : okFileExtensions)
{
if (file.getName().toLowerCase().endsWith(extension))
{
return true;
}
}
return false;
}
}
它`做工精细。
It`s Work fine.
和使用本像(新ImageFileFilter(通过文件名));
and Use This like(new ImageFileFilter(pass file name));
这篇关于Android的:如何检查文件是否是形象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!