[Schmitzm-commits] r782 - in trunk: dist src/schmitzm/geotools/io

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Thu Apr 1 03:10:06 CEST 2010


Author: alfonx
Date: 2010-04-01 03:10:01 +0200 (Thu, 01 Apr 2010)
New Revision: 782

Modified:
   trunk/dist/schmitzm-2.0.x.jar
   trunk/src/schmitzm/geotools/io/GeoImportUtil.java
Log:
Nue: uncompressShapeZip
	/**
	 * Entpackt ein ZIP nach tmp (wo es angeblich von der Java VM nach JRE Ende
	 * gel?\195?\182scht wird und liefert eine URL auf die erste gefundene .SHP Datei
	 * zur?\195?\188ck. TODO Die entpacketen Dateien bleiben in Temp liegen!.
	 * 
	 * @throws IOException
	 */
	public static URL uncompressShapeZip(File zipFile)
			throws FileNotFoundException, IOException {
		return uncompressShapeZip(new FileInputStream(zipFile));
	}

	/**
	 * Entpackt einen ZIP Stream nach tmp und liefert eine URL auf die erste gefundene .SHP Datei
	 * zur?\195?\188ck. TODO Die entpackten Dateien bleiben in Temp liegen!.
	 * 
	 * @throws IOException
	 */
	public static URL uncompressShapeZip(InputStream zippedInputstream)
			throws IOException {
		ZipInputStream inStream = new ZipInputStream(zippedInputstream);


Modified: trunk/dist/schmitzm-2.0.x.jar
===================================================================
(Binary files differ)

Modified: trunk/src/schmitzm/geotools/io/GeoImportUtil.java
===================================================================
--- trunk/src/schmitzm/geotools/io/GeoImportUtil.java	2010-04-01 01:09:25 UTC (rev 781)
+++ trunk/src/schmitzm/geotools/io/GeoImportUtil.java	2010-04-01 01:10:01 UTC (rev 782)
@@ -1234,7 +1234,30 @@
 			inStream.close();
 		}
 	}
+	
+	public static boolean uncompressShapeZipCleanup() {
+		// TODO 
+		return false;
+	}
 
+	/**
+	 * Entpackt ein ZIP nach tmp (wo es angeblich von der Java VM nach JRE Ende
+	 * gelöscht wird und liefert eine URL auf die erste gefundene .SHP Datei
+	 * zurück. TODO Die entpacketen Dateien bleiben in Temp liegen!.
+	 * 
+	 * @throws IOException
+	 */
+	public static URL uncompressShapeZip(File zipFile)
+			throws FileNotFoundException, IOException {
+		return uncompressShapeZip(new FileInputStream(zipFile));
+	}
+
+	/**
+	 * Entpackt einen ZIP Stream nach tmp und liefert eine URL auf die erste gefundene .SHP Datei
+	 * zurück. TODO Die entpackten Dateien bleiben in Temp liegen!.
+	 * 
+	 * @throws IOException
+	 */
 	public static URL uncompressShapeZip(InputStream zippedInputstream)
 			throws IOException {
 		ZipInputStream inStream = new ZipInputStream(zippedInputstream);



More information about the Schmitzm-commits mailing list