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/internal/Log.java
/*
* Copyright (c) 2011, 2021, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package jdk.jpackage.internal;
import java.io.PrintWriter;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
/**
* Log
*
* General purpose logging mechanism.
*/
public class Log {
public static class Logger {
private boolean verbose = false;
private PrintWriter out = null;
private PrintWriter err = null;
// verbose defaults to true unless environment variable JPACKAGE_DEBUG
// is set to true.
// Then it is only set to true by using --verbose jpackage option
public Logger() {
verbose = ("true".equals(System.getenv("JPACKAGE_DEBUG")));
}
public void setVerbose() {
verbose = true;
}
public boolean isVerbose() {
return verbose;
}
public void setPrintWriter(PrintWriter out, PrintWriter err) {
this.out = out;
this.err = err;
}
public void flush() {
if (out != null) {
out.flush();
}
if (err != null) {
err.flush();
}
}
public void info(String msg) {
if (out != null) {
out.println(msg);
}
}
public void fatalError(String msg) {
if (err != null) {
err.println(msg);
}
}
public void error(String msg) {
msg = addTimestamp(msg);
if (err != null) {
err.println(msg);
}
}
public void verbose(Throwable t) {
if (out != null && verbose) {
out.print(addTimestamp(""));
t.printStackTrace(out);
}
}
public void verbose(String msg) {
msg = addTimestamp(msg);
if (out != null && verbose) {
out.println(msg);
}
}
public void verbose(List<String> strings,
List<String> output, int returnCode, long pid) {
if (verbose) {
StringBuffer sb = new StringBuffer();
sb.append("Command [PID: ");
sb.append(pid);
sb.append("]:\n ");
for (String s : strings) {
sb.append(" " + s);
}
verbose(new String(sb));
if (output != null && !output.isEmpty()) {
sb = new StringBuffer("Output:");
for (String s : output) {
sb.append("\n " + s);
}
verbose(new String(sb));
}
verbose("Returned: " + returnCode + "\n");
}
}
private String addTimestamp(String msg) {
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss.SSS");
Date time = new Date(System.currentTimeMillis());
return String.format("[%s] %s", sdf.format(time), msg);
}
}
private static final InheritableThreadLocal<Logger> instance =
new InheritableThreadLocal<Logger>() {
@Override protected Logger initialValue() {
return new Logger();
}
};
public static void setPrintWriter (PrintWriter out, PrintWriter err) {
instance.get().setPrintWriter(out, err);
}
public static void flush() {
instance.get().flush();
}
public static void info(String msg) {
instance.get().info(msg);
}
public static void fatalError(String msg) {
instance.get().fatalError(msg);
}
public static void error(String msg) {
instance.get().error(msg);
}
public static void setVerbose() {
instance.get().setVerbose();
}
public static boolean isVerbose() {
return instance.get().isVerbose();
}
public static void verbose(String msg) {
instance.get().verbose(msg);
}
public static void verbose(Throwable t) {
instance.get().verbose(t);
}
public static void verbose(List<String> strings, List<String> out,
int ret, long pid) {
instance.get().verbose(strings, out, ret, pid);
}
}
⏎ jdk/jpackage/internal/Log.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, ≈10🔥, 0💬
Popular Posts:
The JMX technology provides the tools for building distributed, Web-based, modular and dynamic solut...
JDK 17 jdk.internal.vm.ci.jmod is the JMOD file for JDK 17 Internal VM CI module. JDK 17 Internal VM...
JDK 17 jdk.charsets.jmod is the JMOD file for JDK 17 Charsets module. JDK 17 Charsets module compile...
JDK 17 java.xml.crypto.jmod is the JMOD file for JDK 17 XML (eXtensible Markup Language) Crypto modu...
How to download and install Apache ZooKeeper Source Package? Apache ZooKeeper is an open-source serv...