šablona/funkce/src/cz/frantovo/xmlWebGenerator/Funkce.java
author František Kučera <franta-hg@frantovo.cz>
Wed, 06 Jul 2011 22:37:22 +0200
changeset 24 63e404f454e8
parent 21 2f50f9e10a27
child 27 037a9f20bf3a
permissions -rw-r--r--
Seznam všech stránek: první verze, formou tabulky
franta-hg@6
     1
package cz.frantovo.xmlWebGenerator;
franta-hg@6
     2
franta-hg@6
     3
import java.io.File;
franta-hg@6
     4
import java.util.Date;
franta-hg@6
     5
import java.net.URI;
franta-hg@6
     6
import java.net.URISyntaxException;
franta-hg@6
     7
franta-hg@6
     8
public class Funkce {
franta-hg@21
     9
	public static Date posledníZměna(String soubor) throws URISyntaxException {
franta-hg@21
    10
		return new Date(new File(new URI(soubor)).lastModified());
franta-hg@21
    11
	}
franta-hg@6
    12
}
franta-hg@6
    13