All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ingenias.idegen.Prueba Maven / Gradle / Ivy

Go to download

The INGENIAS Meta-Editor core. It is a set of facilities to generate an editor from a detailed xml description

There is a newer version: 1.0.9
Show newest version
package ingenias.idegen;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.zip.ZipInputStream;

public class Prueba {

	public static void main(String args[]) throws IOException{
		
		BufferedReader br = new BufferedReader(new InputStreamReader(new ZipInputStream(ObjectsGenerator.class.getResourceAsStream("/templates"))));
		String fileName;
		while((fileName = br.readLine()) != null){ 
			System.err.println(fileName);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy