⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 easywriter.java

📁 金融资产定价,随机过程,MONTE CARLO 模拟 JAVA 程序和文档资料
💻 JAVA
字号:
package com.skylit.io;import java.io.*;/** *  Written by Gary Litvin as part of *  <i>Java Methods: *       An Introduction to Object-Oriented Programming</i> *  (Skylight Publishing 2001, ISBN 0-9654853-7-4). * *  Rev 1.0, 05/15/01 *//** *  EasyWriter provides simple methods for opening and *  writing to text files.  All exceptions are handled *  inside the class and are hidden from the user. * *  <xmp> *  Example: *  ======= * *  EasyWriter outFile = new EasyWriter("anyname.txt"); *  if (outFile.bad()) *  { *    System.err.println("Can't create anyname.txt\n"); *    System.exit(1); *  } *  outFile.print("2 + 2 = "); *  outFile.println(4); *  outFile.println();  // an extra blank line *  outFile.close();    // optional *  </xmp> *  @author Gary Litvin *  @version 1.1 */public class EasyWriter{  protected String myFileName;  protected PrintWriter myOutFile;  protected int myErrorFlags = 0;  protected static final int OPENERROR = 0x0001;  protected static final int CLOSEERROR = 0x0002;  protected static final int WRITEERROR = 0x0004;  /**   *  Constructor.  Creates a new file (or truncates an existing file)   *  @param fileName the name of the file to be created   */  public EasyWriter(String fileName)  {    this(fileName, null);  }  /**   *  Constructor.  Creates a new file. If the file exists   *  can append to it.   *  @param fileName the name of the file to be created   *  @param mode if equals to "app" opens in append mode   */  public EasyWriter(String fileName, String mode)  {    myFileName = fileName;    myErrorFlags = 0;    try    {      myOutFile = new PrintWriter(              new FileWriter(fileName, "app".equals(mode)));    }    catch (IOException e)    {      myErrorFlags |= OPENERROR;      myFileName = null;    }  }  /**   *  Closes the file   */  public void close()  {    if (myFileName != null)      myOutFile.close();  }  /**   *  Checks the status of the file   *  @return true if en error occurred opening or writing to the file,   *  false otherwise   */  public boolean bad()  {    return myErrorFlags != 0;  }  /**   *  Writes one character to the file   *  @param ch character to be written   */  public void print(char ch)  {    myOutFile.print(ch);  }  /**   *  Writes an integer to the file   *  @param k number to be written   */  public void print(int k)  {    myOutFile.print(k);  }  /**   *  Writes a double to the file   *  @param x number to be written   */  public void print(double x)  {    myOutFile.print(x);  }  /**   *  Writes a string to the file   *  @param s string to be written   */  public void print(String s)  {    myOutFile.print(s);  }  /**   *  Writes a newline character to the file   */  public void println()  {    myOutFile.println();  }  /**   *  Writes one character and newline to the file   *  @param ch character to be written   */  public void println(char ch)  {    myOutFile.println(ch);  }  /**   *  Writes an integer and newline to the file   *  @param k number to be written   */  public void println(int k)  {    myOutFile.println(k);  }  /**   *  Writes a double and newline to the file   *  @param x number to be written   */  public void println(double x)  {    myOutFile.println(x);  }  /**   *  Writes a string and newline to the file   *  @param s string to be written   */  public void println(String s)  {    myOutFile.println(s);  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -