Git Product home page Git Product logo

Comments (3)

tfennelly avatar tfennelly commented on May 25, 2024

Hi. What's the stack trace?

from smooks.

crognon avatar crognon commented on May 25, 2024

Sorry, It leaves no stack trace beside this one :

+1: java.lang.NullPointerException
    at org.milyn.javabean.gen.ConfigGenerator.main(ConfigGenerator.java:72)

when I launch it in Eclipse I can see that on line 72 there is

outputFile.getParentFile().mkdirs();

when I inspect outputFile.getParentFile() it is null though the outputfile variable is holding a genuine File instance.

from smooks.

manish-in-java avatar manish-in-java commented on May 25, 2024

The configuration generator has the following code:

String outputFileName = getArgument("-o", "Output File Path", true, args);
File outputFile = new File(outputFileName);
outputFile.getParentFile().mkdirs();

The issue description indicates that the tool was run on Microsoft Windows. When the tool is run on Windows, with a command line such as -o file.xml, outputFile.getParentFile() returns null (at least on JDK 1.6 and 1.7), because no directory has been specified with the file name. Using -o ./file.xml gets rid of the error.

Added guard checks in ConfigGenerator to prevent an exception for this case on Windows.

from smooks.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.