Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JDK 17 jdk.jpackage.jmod - JPackage Tool
JDK 17 jdk.jpackage.jmod is the JMOD file for JDK 17 JPackage tool,
which can be invoked by the "jpackage" command.
JDK 17 JPackage tool compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.jpackage.jmod.
JDK 17 JPackage tool compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 JPackage tool source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\jdk.jpackage.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ jdk/jpackage/main/Main.java
/* * Copyright (c) 2011, 2020, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package jdk.jpackage.main; import jdk.jpackage.internal.Arguments; import jdk.jpackage.internal.Log; import jdk.jpackage.internal.CLIHelp; import java.io.PrintWriter; import java.util.ResourceBundle; import java.io.FileNotFoundException; import java.io.IOException; import java.text.MessageFormat; public class Main { private static final ResourceBundle I18N = ResourceBundle.getBundle( "jdk.jpackage.internal.resources.MainResources"); /** * main(String... args) * This is the entry point for the jpackage tool. * * @param args command line arguments */ public static void main(String... args) throws Exception { PrintWriter out = new PrintWriter(System.out); PrintWriter err = new PrintWriter(System.err); int status = new jdk.jpackage.main.Main().execute(out, err, args); System.exit(status); } /** * execute() - this is the entry point for the ToolProvider API. * * @param out output stream * @param err error output stream * @param args command line arguments * @return an exit code. 0 means success, non-zero means an error occurred. */ public int execute(PrintWriter out, PrintWriter err, String... args) { Log.setPrintWriter(out, err); try { String[] newArgs; try { newArgs = CommandLine.parse(args); } catch (FileNotFoundException fnfe) { Log.fatalError(MessageFormat.format(I18N.getString( "ERR_CannotParseOptions"), fnfe.getMessage())); return 1; } catch (IOException ioe) { Log.fatalError(ioe.getMessage()); return 1; } if (newArgs.length == 0) { CLIHelp.showHelp(true); } else if (hasHelp(newArgs)){ if (hasVersion(newArgs)) { Log.info(System.getProperty("java.version") + "\n"); } CLIHelp.showHelp(false); } else if (hasVersion(newArgs)) { Log.info(System.getProperty("java.version")); } else { Arguments arguments = new Arguments(newArgs); if (!arguments.processArguments()) { // processArguments() will log error message if failed. return 1; } } return 0; } finally { Log.flush(); } } private boolean hasHelp(String[] args) { for (String a : args) { if ("--help".equals(a) || "-h".equals(a)) { return true; } } return false; } private boolean hasVersion(String[] args) { for (String a : args) { if ("--version".equals(a)) { return true; } } return false; } }
⏎ jdk/jpackage/main/Main.java
Or download all of them as a single archive file:
File name: jdk.jpackage-17.0.5-src.zip File size: 92069 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.jshell.jmod - JShell Tool
2023-08-03, ∼5583🔥, 0💬
Popular Posts:
What Is HttpComponents httpclient-4.2.2.jar? HttpComponents httpclient-4.2.2.jar is the JAR file for...
What Is HttpComponents httpcore-4.2.2.jar? HttpComponents httpcore-4.2.2.jar is the JAR file for Apa...
maven-core-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Core module. Apache Maven is a software ...
The Java Naming and Directory Interface (JNDI) is part of the Java platform, providing applications ...
Apache Log4j API provides the interface that applications should code to and provides the adapter co...