Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// The MIT License (MIT)
//
// Copyright (c) 2017 Timothy D. Jones
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package io.github.jonestimd.swing.dialog;
import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.Window;
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import java.io.UnsupportedEncodingException;
import java.util.ResourceBundle;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import com.google.common.base.MoreObjects;
import io.github.jonestimd.swing.ComponentResources;
import io.github.jonestimd.swing.ComponentTreeUtils;
import io.github.jonestimd.swing.action.CancelAction;
/**
* Display an exception with its stack trace.
*/
public class ExceptionDialog extends MessageDialog {
public static final String DEFAULT_RESOURCE_PREFIX = "exceptionDialog.";
public static void show(Component owner, Throwable throwable) {
new ExceptionDialog(ComponentTreeUtils.findAncestor(owner, Window.class), throwable).setVisible(true);
}
/**
* Construct an exception dialog using {@link ComponentResources#BUNDLE}.
*/
public ExceptionDialog(Window owner, Throwable exception) {
this(owner, ComponentResources.BUNDLE, DEFAULT_RESOURCE_PREFIX, exception);
}
/**
* Construct an exception dialog using {@link ComponentResources#BUNDLE}.
*/
public ExceptionDialog(Window owner, String label, Throwable exception) {
this(owner, ComponentResources.BUNDLE, DEFAULT_RESOURCE_PREFIX, label, exception);
}
/**
* Construct an exception dialog using the specified resource bundle with fallback to
* {@link ComponentResources#BUNDLE} for missing values.
*/
public ExceptionDialog(Window owner, ResourceBundle bundle, String resourcePrefix, Throwable exception) {
this(owner, bundle, resourcePrefix, getString(bundle, resourcePrefix, "exception.label"), exception);
}
/**
* Construct an exception dialog using the specified resource bundle with fallback to
* {@link ComponentResources#BUNDLE} for missing values.
*/
public ExceptionDialog(Window owner, ResourceBundle bundle, String resourcePrefix, String label, Throwable exception) {
super(owner, getString(bundle, resourcePrefix, "title"), ModalityType.APPLICATION_MODAL);
getContentPane().setLayout(new BorderLayout());
getContentPane().add(new JLabel(label), BorderLayout.NORTH);
JTextArea detailArea = new JTextArea(getInt(bundle, resourcePrefix, "exception.rows"), getInt(bundle, resourcePrefix, "exception.columns"));
detailArea.setEditable(false);
detailArea.setTabSize(4);
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
exception.printStackTrace(new PrintStream(buffer));
try {
detailArea.setText(buffer.toString("UTF-8"));
}
catch (UnsupportedEncodingException ex) {
detailArea.setText(getString(bundle, resourcePrefix, "noStackTrace"));
}
getContentPane().add(new JScrollPane(detailArea), BorderLayout.CENTER);
pack();
CancelAction.install(this);
}
private static int getInt(ResourceBundle bundle, String resourcePrefix, String key) {
try {
return Integer.parseInt(bundle.getObject(MoreObjects.firstNonNull(resourcePrefix, "") + key).toString());
} catch (Exception ex) {
return ComponentResources.getInt(DEFAULT_RESOURCE_PREFIX + key);
}
}
private static String getString(ResourceBundle bundle, String resourcePrefix, String key) {
try {
return bundle.getString(MoreObjects.firstNonNull(resourcePrefix, "") + key);
} catch (Exception ex) {
return ComponentResources.BUNDLE.getString(DEFAULT_RESOURCE_PREFIX + key);
}
}
}