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

java.fedora.client.BatchOutput Maven / Gradle / Ivy

Go to download

The Fedora Client is a Java Library that allows API access to a Fedora Repository. The client is typically one part of a full Fedora installation.

The newest version!
/*
 * -----------------------------------------------------------------------------
 *
 * 

License and Copyright: The contents of this file are subject to the * Apache License, Version 2.0 (the "License"); you may not use * this file except in compliance with the License. You may obtain a copy of * the License at * http://www.fedora-commons.org/licenses.

* *

Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for * the specific language governing rights and limitations under the License.

* *

The entire file consists of original code.

*

Copyright © 2008 Fedora Commons, Inc.
*

Copyright © 2002-2007 The Rector and Visitors of the University of * Virginia and Cornell University
* All rights reserved.

* * ----------------------------------------------------------------------------- */ package fedora.client; import javax.swing.ImageIcon; import javax.swing.JInternalFrame; import javax.swing.JTextArea; import javax.swing.JScrollPane; import java.io.File; //2003.12.03 niebel import java.io.FileOutputStream; //2003.12.03 niebel import java.io.PrintStream; //2003.12.03 niebel import java.io.FileNotFoundException; //2003.12.03 niebel import java.util.Calendar; //2003.12.03 niebel /** * *

Title: BatchOutput.java

*

Description:

* * @author [email protected] * @version $Id: BatchOutput.java 5162 2006-10-25 00:49:06Z eddie $ */ public class BatchOutput extends JInternalFrame { private static final long serialVersionUID = 1L; JTextArea jTextArea = null; String directoryPath = null; //2003.12.03 niebel public BatchOutput(String title) { super(title, true, //resizable true, //TITLE_PROPERTY true, //maximizable true);//iconifiable setVisible(false); jTextArea = new JTextArea(); jTextArea.setEditable(false); JScrollPane jScrollPane = new JScrollPane(jTextArea); getContentPane().add(jScrollPane); setFrameIcon(new ImageIcon(this.getClass().getClassLoader().getResource("images/standard/general/New16.gif"))); setSize(400,400); } public JTextArea getJTextArea() { return jTextArea; } //2003.12.03 niebel vvvvv -- duplicate output to file /** * extract parent directory from filepath of pidsfile, * store it as directory where processing progress report will be written. * see also BatchBuildGUI.java, BatchBuildIngestGUI.java, and BatchIngestGUI.java, * each of which calls setDirectoryPath() */ public void setDirectoryPath(String pidsfilepath) { File pidsfile = new File(pidsfilepath); directoryPath = pidsfile.getParent(); } /** * write processing progress report to directory stored by setDirectoryPath(). * contents is jTextArea.getText(); filename based on current time. * see also BatchThread.java, which calls flush2file(). */ public void flush2file() { StringBuffer filename = new StringBuffer(); { Calendar now = Calendar.getInstance(); filename.append(now.get(Calendar.YEAR)); int month = now.get(Calendar.MONTH)+1; filename.append((month < 10 ? "0" : "") + month); int day = now.get(Calendar.DAY_OF_MONTH); filename.append((day < 10 ? "0" : "") + day); int militaryHour = now.get(Calendar.HOUR_OF_DAY); filename.append("-" + (militaryHour < 10 ? "0" : "") + militaryHour); int minute = now.get(Calendar.MINUTE); filename.append((minute < 10 ? "0" : "") + minute); int second = now.get(Calendar.SECOND); filename.append((second < 10 ? "0" : "") + second); int milliseconds = now.get(Calendar.MILLISECOND); filename.append("-" + (milliseconds < 10 ? "00" : milliseconds < 100 ? "0" : "") + milliseconds); filename.append(".txt"); } try { File file = new File(directoryPath, filename.toString()); FileOutputStream fileOutputStream = new FileOutputStream(file); PrintStream userLog = new PrintStream(fileOutputStream); userLog.print(jTextArea.getText()); userLog.close(); } catch (FileNotFoundException e) { jTextArea.append("COULD NOT WRITE PROCESSING REPORT TO FILE!!!\n"); } } //2003.12.03 niebel ^^^^^ }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy