www.pudn.com > 200402121144312230.rar > DelHtml.java
package net.ijsp.news.news; /** *Title:ɾ³ýÖ¸¶¨Îļþ
*Description:
*Copyright: Copyright (c) 2003
*Company: ijsp.net
* @author ccjsmile * @version 1.0 */ import java.io.File; public class DelHtml { public static boolean del(String filePath) { File file = new File(filePath); return file.delete(); } }