从InputStream

时间:2015-09-15 17:23:36

标签: java date datetime junit stream

我在JUnit测试期间遇到类似于此post的问题,其中一个日期似乎可由SimpleDateFormat解析,但我得到一个ParseException说:

java.text.ParseException: Unparseable date: "05-13-2013"

我在Java 6下运行。

受测试的类FileMoveBasedOnControlFile有一个函数getDateStringEntriesFromStream,它接受​​一个I​​nputStream,尝试使用格式MM-dd-yyyy将该流中的每一行解析为Date,转换每个成功解析将日期转换为新格式yyyy-MM-dd,最后将成功转换的日期输出到ArrayList。

' 2013年5月11日'好像被解析得很好。测试中的下一个日期' 05-13-2013'没有按'吨。我感到很茫然,看起来InputStream(或' \ n')不会影响这段代码。我已经尝试了' \ r \ n',它也没有用。

在测试期间,以下代码将解析第一个日期而不是第二个日期:

@Test
    public void testMultipleValidEntries() throws IOException
    {
        StringBuilder strBuilder = new StringBuilder();

        String date1 = "05-11-2013";
        String date2 = "05-13-2013";
        String date3 = "05-16-2013";

        strBuilder.append(date1 + "\n");
        strBuilder.append(date2 + "\n");
        strBuilder.append(date3);

        FileMoveBasedOnControlFile fileMoveBasedOnControlFile = new FileMoveBasedOnControlFile();

        InputStream inputStream = new ByteArrayInputStream(strBuilder.toString().getBytes("UTF-8"));

        ArrayList<String> entries = fileMoveBasedOnControlFile.getDateStringEntriesFromStream(inputStream);

        assertTrue(entries.size() == 3);

        assertTrue(entries.get(0).equals("2013-05-11"));
        assertTrue(entries.get(1).equals("2013-05-13"));
        assertTrue(entries.get(2).equals("2013-05-16"));
    }

这是正在测试的类函数:

public ArrayList<String> getDateStringEntriesFromStream(InputStream inputStream) throws IOException
    {
        ArrayList<String> controlFileEntries = new ArrayList<String>();
        BufferedReader controlFileReader = new BufferedReader(new InputStreamReader(inputStream));
        String controlFileEntry;

        SimpleDateFormat simpleDateFormat = new SimpleDateFormat(ORIGINAL_DATE_FORMAT);
        simpleDateFormat.setLenient(false);

        LOG.info("Reading stream.");
        while( (controlFileEntry = controlFileReader.readLine()) != null)
        {
            try
            {
                Date controlFileDate = simpleDateFormat.parse(controlFileEntry);
                simpleDateFormat.applyPattern(NEW_DATE_FORMAT);
                String newDateString = simpleDateFormat.format(controlFileDate);
                controlFileEntries.add(newDateString);
                LOG.info("Got " + newDateString + ".");
            }
            catch(ParseException e)
            {
                LOG.info("Invalid date entry \'" + controlFileEntry  + "\'.");
            }
        }
        if (controlFileEntries.size() == 0)
        {
            LOG.info("Stream is empty.");
        }
        return controlFileEntries;
    }

其中ORIGINAL_DATE_FORMAT是&#39; MM-dd-yyyy&#39; NEW_DATE_FORMAT是&yyyy-MM-dd&#39;。

1 个答案:

答案 0 :(得分:3)

SimpleDateFormat声明移动到循环中。它适用于第一个Date,但之后失败,因为它永远不会重新初始化为您的ORIGINAL_DATE_FORMAT

LOG.info("Reading stream.");
while( (controlFileEntry = controlFileReader.readLine()) != null)
{
  // Every iteration should start with the ORIGINAL_DATE_FORMAT
  SimpleDateFormat simpleDateFormat = new SimpleDateFormat(ORIGINAL_DATE_FORMAT);
  simpleDateFormat.setLenient(false);