- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个文件输入类。它在构造函数中有一个字符串参数来加载提供的文件名。但是,如果文件不存在,它就会退出。如果文件不存在,我希望它输出一条消息 - 但不确定如何......
这是类(class):
public class FileInput extends Input {
/**
* Construct <code>FileInput</code> object given a file name.
*/
public FileInput(final String fileName) {
try {
scanner = new Scanner(new FileInputStream(fileName));
} catch (FileNotFoundException e) {
System.err.println("File " + fileName + " could not be found.");
System.exit(1);
}
}
/**
* Construct <code>FileInput</code> object given a file name.
*/
public FileInput(final FileInputStream fileStream) {
super(fileStream);
}
}
及其实现:
private void loadFamilyTree() {
out.print("Enter file name: ");
String fileName = in.nextLine();
FileInput input = new FileInput(fileName);
family.load(input);
input.close();
}
import java.io.Closeable;
import java.io.InputStream;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.InputMismatchException;
import java.util.Iterator;
import java.util.NoSuchElementException;
import java.util.Scanner;
public class Input implements Closeable, Iterator<String>
{
/**
* A reference to the associated <code>Scanner</code> that supplies all the actual input
* functionality.
* <p/>
* <p>This is protected and not final rather than private and final (as we might have
* expected it to be) so that <code>FileInput</code> can access the variable. This is
* necessary because <code>FileInput</code> needs to capture all exceptions that can happen
* during construction, which means that the <code>super</code> constructor call cannot be
* used. This appears to be something of a misfeature of Java.</p>
*/
protected Scanner scanner;
/**
* The default constructor of an <code>Input</code> that assumes <code>System.in</code> is to
* be the <code>InputStream</code> used.
*/
public Input()
{
this(System.in);
}
/**
* Constructor of an <code>Input</code> object given an <code>InputStream</code> object.
*/
public Input(final InputStream in)
{
scanner = new Scanner(in);
}
/**
* A finalizer to ensure all files are closed if an <code>Input</code> object is garbage
* collected.
*/
public void finalize()
{
close();
}
/**
* Close the file when finished with it.
*/
public void close()
{
scanner.close();
}
/**
* @return <code>true</code> if there is more input, <code>false</code> otherwise.
*/
public boolean hasNext()
{
boolean returnValue = false;
try
{
returnValue = scanner.hasNext();
}
catch (IllegalStateException e)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @return the next token (sequence of characters terminated by a whitespace) in the input
* stream.
*/
public String next()
{
String returnValue = null;
try
{
returnValue = scanner.next();
}
catch (NoSuchElementException nsee)
{
noSuchElementHandler();
}
catch (IllegalStateException ise)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* This operation is required in order to conform to <code>Iterator<String></code> but is
* not supported. Normally an <code>UnsupportedOperationException</code> would be thrown to
* indicate this situation but the whole point is not to throw exceptions so this is simply a
* "do nothing" method.
*/
public void remove()
{
}
/**
* NB This method currently has a mis-feature in that it returns false incorrectly when there
* is a single end-of-line left in the file.
*
* @return <code>true</code> if there is a <code>char</code> to input, <code>false</code>
* otherwise.
*/
public boolean hasNextChar()
{
// Why doesn't this work, it used to.
//boolean returnValue = false ;
//try { returnValue = scanner.hasNext ( "(?s)." ) ; }
//catch ( IllegalStateException e ) { illegalStateExceptionHandler ( ) ; }
//return returnValue ;
return hasNext();
}
/**
* @return the next <code>char</code> in the input stream.
*/
public char nextChar()
{
char returnValue = '\0';
try
{
returnValue = scanner.findWithinHorizon("(?s).", 1).charAt(0);
}
catch (IllegalArgumentException iae)
{
// This cannot happen as it is clear in the statement that the horizon is 1 which is > 0 and
// this exception only happens for negative horizons.
System.exit(1);
}
catch (IllegalStateException ise)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @return <code>true</code> if there is an <code>int</code> to input, <code>false</code>
* otherwise.
*/
public boolean hasNextInt()
{
boolean returnValue = false;
try
{
returnValue = scanner.hasNextInt();
}
catch (IllegalStateException e)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @return the next <code>int</code> in the input stream assumed to be in the default radix
* which is 10.
*/
public int nextInt()
{
int returnValue = 0;
try
{
returnValue = scanner.nextInt();
}
catch (InputMismatchException ime)
{
inputMismatchExceptionHandler("int");
}
catch (NoSuchElementException nsee)
{
noSuchElementHandler();
}
catch (IllegalStateException ise)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @param radix the radix of the input.
* @return the next <code>int</code> in the input stream using the radix
* <code>radix</code>.
*/
public int nextInt(final int radix)
{
int returnValue = 0;
try
{
returnValue = scanner.nextInt(radix);
}
catch (InputMismatchException ime)
{
inputMismatchExceptionHandler("int");
}
catch (NoSuchElementException nsee)
{
noSuchElementHandler();
}
catch (IllegalStateException ise)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @return <code>true</code> if there is a <code>long</code> to input, <code>false</code>
* otherwise.
*/
public boolean hasNextLong()
{
boolean returnValue = false;
try
{
returnValue = scanner.hasNextLong();
}
catch (IllegalStateException e)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @return the next <code>long</code> in the input stream assumed to be in the default radix
* which is 10.
*/
public long nextLong()
{
long returnValue = 0;
try
{
returnValue = scanner.nextLong();
}
catch (InputMismatchException ime)
{
inputMismatchExceptionHandler("long");
}
catch (NoSuchElementException nsee)
{
noSuchElementHandler();
}
catch (IllegalStateException ise)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @param radix the radix of the input sequence.
* @return the next <code>long</code> in the input stream using the radix
* <code>radix</code>.
*/
public long nextLong(final int radix)
{
long returnValue = 0;
try
{
returnValue = scanner.nextLong(radix);
}
catch (InputMismatchException ime)
{
inputMismatchExceptionHandler("long");
}
catch (NoSuchElementException nsee)
{
noSuchElementHandler();
}
catch (IllegalStateException ise)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @return <code>true</code> if there is a <code>BigInteger</code> to input, <code>false</code>
* otherwise.
*/
public boolean hasNextBigInteger()
{
boolean returnValue = false;
try
{
returnValue = scanner.hasNextBigInteger();
}
catch (IllegalStateException e)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @return the next <code>BigInteger</code> in the input stream assumed to be in the default
* radix which is 10.
*/
public BigInteger nextBigInteger()
{
BigInteger returnValue = new BigInteger("0");
try
{
returnValue = scanner.nextBigInteger();
}
catch (InputMismatchException ime)
{
inputMismatchExceptionHandler("BigInteger");
}
catch (NoSuchElementException nsee)
{
noSuchElementHandler();
}
catch (IllegalStateException ise)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @param radix the radix of the input sequence.
* @return the next <code>BigInteger</code> in the input stream using the radix
* <code>radix</code.
*/
public BigInteger nextBigInteger(final int radix)
{
BigInteger returnValue = new BigInteger("0");
try
{
returnValue = scanner.nextBigInteger(radix);
}
catch (InputMismatchException ime)
{
inputMismatchExceptionHandler("BigInteger");
}
catch (NoSuchElementException nsee)
{
noSuchElementHandler();
}
catch (IllegalStateException ise)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @return <code>true</code> if there is a <code>float</code> to input, <code>false</code>
* otherwise.
*/
public boolean hasNextFloat()
{
boolean returnValue = false;
try
{
returnValue = scanner.hasNextFloat();
}
catch (IllegalStateException e)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @return the next <code>float</code> in the input stream.
*/
public float nextFloat()
{
float returnValue = 0;
try
{
returnValue = scanner.nextFloat();
}
catch (InputMismatchException ime)
{
inputMismatchExceptionHandler("float");
}
catch (NoSuchElementException nsee)
{
noSuchElementHandler();
}
catch (IllegalStateException ise)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @return <code>true</code> if there is a <code>double</code> to input, <code>false</code>
* otherwise.
*/
public boolean hasNextDouble()
{
boolean returnValue = false;
try
{
returnValue = scanner.hasNextDouble();
}
catch (IllegalStateException e)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @return the next <code>double</code> in the input stream.
*/
public double nextDouble()
{
double returnValue = 0;
try
{
returnValue = scanner.nextDouble();
}
catch (InputMismatchException ime)
{
inputMismatchExceptionHandler("double");
}
catch (NoSuchElementException nsee)
{
noSuchElementHandler();
}
catch (IllegalStateException ise)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @return <code>true</code> if there is a <code>BigDecimal</code> to input,
* <code>false</code> otherwise.
*/
public boolean hasNextBigDecimal()
{
boolean returnValue = false;
try
{
returnValue = scanner.hasNextBigDecimal();
}
catch (IllegalStateException e)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @return the next <code>BigDecimal</code> in the input stream.
*/
public BigDecimal nextBigDecimal()
{
BigDecimal returnValue = new BigDecimal("0");
try
{
returnValue = scanner.nextBigDecimal();
}
catch (InputMismatchException ime)
{
inputMismatchExceptionHandler("BigDecimal");
}
catch (NoSuchElementException nsee)
{
noSuchElementHandler();
}
catch (IllegalStateException ise)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @return <code>true</code> if there is more input including an end of line marker,
* <code>false</code> otherwise.
*/
public boolean hasNextLine()
{
boolean returnValue = false;
try
{
returnValue = scanner.hasNextLine();
}
catch (IllegalStateException e)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* @return all the characters in the input stream up to and including the next end of line
* marker in the input stream.
*/
public String nextLine()
{
String returnValue = null;
try
{
returnValue = scanner.nextLine();
}
catch (NoSuchElementException nsee)
{
noSuchElementHandler();
}
catch (IllegalStateException ise)
{
illegalStateExceptionHandler();
}
return returnValue;
}
/**
* The method to handle an <code>IllegalStateException</code>.
*/
private void illegalStateExceptionHandler()
{
System.err.println("Input has been closed.");
System.exit(1);
}
/**
* The method to handle an <code>InputMismatchException</code>.
*/
private void inputMismatchExceptionHandler(final String type)
{
System.err.println("Input did not represent " +
(type.equals("int") ? "an" : "a") + " " + type + " value.");
System.exit(1);
}
/**
* The method to handle an <code>NoSuchElementException</code>.
*/
private void noSuchElementHandler()
{
System.err.println("No input to be read.");
System.exit(1);
}
}
最佳答案
看起来确实输出了一条消息。
System.err.println("File " + fileName + " could not be found.");
但是你真的不应该因为这样的失败而退出。这种事情使得编写测试常见故障的单元测试变得不可能。
抛出一个带有有用错误消息的 FileNotFoundException
怎么样?
如果您的项目没有使用特定的日志记录框架,那么通过 java.util.logging
进行日志记录是一个很好的开始方式。
import java.util.logging.Logger;
...
private static final Logger LOGGER = Logger.getLogger(FileInput.class.getName());
...
LOGGER.severe("Tried to create a FileInput from a non-existant/unreadable file " + fileName);
如果您想对 Java 日志框架进行一些研究,请参阅 https://stackoverflow.com/questions/85605/can-anyone-recommend-a-simple-java-logging-framework
关于java - 文件输入帮助/建议,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4641012/
我是一个相对较新的程序员; CS 学士学位,大学毕业大约 2 年,主要使用 C# 中的 .NET。我对 SQL 交互/脚本编写相当流利,并且对 ASP.NET 做了一些工作(主要是维护现有站点)。 我
我计划开发一个简单的解决方案,使我能够即时执行非常基本的视频流分析。我以前从未做过类似的事情,因此这是一个非常笼统和开放的问题。主要重点是检查流是否正常运行,例如 - 卡住帧、黑屏以及音频是否存在。同
我正在考虑重组一个大型 Maven 项目...... 我们当前结构的基本概述: build [MVN plugins, third party dependency management]:5.1
我需要有关附加查询的建议。该查询执行了一个多小时,并根据解释计划进行了全表扫描。我对查询调优还很陌生,希望得到一些建议。 首先,为什么我要进行全表扫描,即使我使用的所有列都在其上创建了索引。 其次,有
我正在做一个项目,我需要在 4 个模型之间创建三个多对多关系。这是它的过程: 常见问题类别可以有许多常见问题子类别,反之亦然。 常见问题组可以有许多常见问题的子类别,反之亦然。 常见问题可以有许多常见
对于代码大小比语音质量更重要的 PIC 和/或 ARM 嵌入式系统,是否有任何易于使用的免费或廉价的语音合成库?现在似乎 1 meg 的封装被认为是“紧凑的”,但很多微 Controller 都比它小
我们正在使用 Solr 建议器功能进行 businessName 查找。当用户输入查询以及匹配的名称时,我们希望 solr 发送来自个人资料的其他属性,如 id、地址、城市、州、国家等字段。 我尝试使
我正在构建一个用户界面。我的计划将包括 4 个主要部分: 1) 顶部菜单 - TMainMenu。一个窗口的顶部 2) 主菜单 - TTreeView。一个窗口的左边。 TreeView的每一项=对应
我的公司需要一个任务管理系统来处理从“为X购买一台计算机”到“将一个人转移到另一个国家”这样简单的场景。简单的场景是由一个人处理的单个任务,而更大的任务可以分解为在工作流程中委派给多个人的多个子任务。
MarkLogic 服务器的林大小与实际内存的建议比率是多少?例如,我目前有一个 190GB 的数据库,并且该数据库随着时间的推移而不断增长。由于数据库会不断增长,我最终需要对该数据库进行集群。因此,
去年我收到了一个礼物,它是一个索尼 CMT700Ni 音频站,支持 wifi。它还具有类似于广播的功能,称为“PartyStreaming”。我目前正在挖掘内部,探索它,所以也许我可以结束拥有自己的“
有没有我可以阅读的研究论文/书籍可以告诉我针对手头的问题哪种特征选择算法最有效。 我试图简单地将 Twitter 消息识别为 pos/neg(首先)。我从基于频率的特征选择开始(从 NLTK 书开始)
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,
我正在浏览 stackoverflow 以查找有关使用 jUnit 进行测试的常见建议,但仍然有几个问题。我知道,如果要测试的方法很复杂,最好的方法是将其分成小的单独部分并测试每个部分。但问题是 -
我有一个方法如下 public List> categorize(List customClass){ List> returnValue = new ArrayList<>();
我的问题是,当按照下面的程序合并时,在最佳实践场景中,“将分支折叠回主干”程序的最后一步是正确的方法吗? 我已经使用 svn 很多年了。在我的个人项目中,我总是毫不犹豫地在主干上愉快地进行修改,并且在
我读过 UINavigationController当您想从 n 个屏幕跳转到第一个屏幕时,这是最佳选择。这样做需要以下代码: NSMutableArray *array=[[NSMutableArr
我有一个文件输入类。它在构造函数中有一个字符串参数来加载提供的文件名。但是,如果文件不存在,它就会退出。如果文件不存在,我希望它输出一条消息 - 但不确定如何...... 这是类(class): pu
我希望创建一个“您访问过的国家/地区” map - 就像您可能在 Facebook、TravelAdvisor 和诸如此类的网站上看到的那样。 我尝试过不同的闪光灯套件,但它们并不像我希望的那样先进。
我需要一些关于如何处理我想用 Perl 编写的脚本的建议。基本上我有一个看起来像这样的文件: id: 1 Relationship: "" name: shelby pet: 1
我是一名优秀的程序员,十分优秀!