
org.jvnet.poormans_installer.Main Maven / Gradle / Ivy
/*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the "License"). You may not use this file except
* in compliance with the License.
*
* You can obtain a copy of the license at
* https://jwsdp.dev.java.net/CDDLv1.0.html
* See the License for the specific language governing
* permissions and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* HEADER in each file and include the License file at
* https://jwsdp.dev.java.net/CDDLv1.0.html If applicable,
* add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your
* own identifying information: Portions Copyright [yyyy]
* [name of copyright owner]
*/
package org.jvnet.poormans_installer;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.Reader;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
import javax.swing.*;
/**
* @author Kohsuke Kawaguchi ([email protected])
*/
public class Main {
public static void main(String[] args) throws IOException {
Reader in =
new InputStreamReader(
Main.class.getResourceAsStream("/license.txt"));
boolean accepted;
if (args.length>0 && args[0].equals("-console")) {
accepted = doConsole(in);
} else {
try {
setUILookAndFeel();
LicenseForm form = new LicenseForm(in);
form.show();
accepted = form.isAccepted();
} catch( InternalError e ) {
// if there's no GUI, I get InternalError or HeadlessException
accepted = doConsole(in);
} catch( UnsupportedOperationException e ) {
// really we want to catch HeadlessException, but that seems
// to cause NoClassDefError on JDK 1.3
accepted = doConsole(in);
}
}
if(accepted)
install();
System.exit(accepted?0:1);
}
private static boolean doConsole(Reader in) throws IOException {
boolean accepted;
ConsoleForm form = new ConsoleForm(in);
form.show();
accepted = form.isAccepted();
return accepted;
}
/**
* Sets to the platform native look and feel.
*
* see http://javaalmanac.com/egs/javax.swing/LookFeelNative.html
*/
private static void setUILookAndFeel() {
// Get the native look and feel class name
String nativeLF = UIManager.getSystemLookAndFeelClassName();
// Install the look and feel
try {
UIManager.setLookAndFeel(nativeLF);
} catch (InstantiationException e) {
} catch (ClassNotFoundException e) {
} catch (UnsupportedLookAndFeelException e) {
} catch (IllegalAccessException e) {
}
}
/**
* Does the actual installation.
*/
private static void install() throws IOException {
ZipInputStream zip =
new ZipInputStream(Main.class.getResourceAsStream("/package.zip"));
ZipEntry e;
while ((e = zip.getNextEntry()) != null) {
File name = new File(e.getName());
System.out.println(name);
if (e.isDirectory()) {
name.mkdirs();
} else {
File parent = name.getParentFile();
if(parent!=null && !parent.exists())
parent.mkdirs();
if (!name.exists())
copyStream(zip, new FileOutputStream(name));
}
}
zip.close();
System.out.println("installation complete");
}
public static void copyStream(InputStream in, OutputStream out)
throws IOException {
byte[] buf = new byte[256];
int len;
while ((len = in.read(buf)) >= 0) {
out.write(buf, 0, len);
}
out.close();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy