Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
try{
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
            System.out.println(" Enter the Amount of articles to be ordered.");
            amount = reader.readLine();

            if(amount.trim().isEmpty()){
                System.out.println("Amount Entered is Empty");
            }

            for(int count=0;count<amount.length();count++){
                if(!Character.isDigit(amount.charAt(count))){
                    throw new NumberFormatException();
                }
            }            
            order.validateAmount(amount);
        }catch(NumberFormatException numbere){
            System.out.println("Either Number format is uncorrect or String is Empty, Try Again.");
    }

The above code gives me single println() statement for both empty string exception and invalid numeric data exception, which I don't want. I want separate println() statements for both exception. how to get?

share|improve this question

2 Answers

up vote 0 down vote accepted
  1. You could either use two different exceptions, for instance NumberFormatException and IllegalArgumentException and do two different catch-clauses.

        ...
        if (amount.isEmpty())
            throw new IllegalArgumentException();
        ...
    
    } catch (NumberFormatException numbere) {
        System.out.println("Either Number format is uncorrect, Try Again.");
    } catch (IllegalArgumentException empty) {
        System.out.println("String is empty, Try Again.");
    }
    
  2. Use the same exception but with different messages:

    try {
        BufferedReader reader = new BufferedReader(new InputStreamReader(
                System.in));
        System.out.println(" Enter the Amount of articles to be ordered.");
        String amount = reader.readLine();
    
        if (amount.trim().isEmpty()) {
            System.out.println("Amount Entered is Empty");
        }
    
        if (amount.isEmpty())
            throw new IllegalArgumentException("String is empty.");
    
    
        for (int count = 0; count < amount.length(); count++)
            if (!Character.isDigit(amount.charAt(count)))
                throw new IllegalArgumentException("Number format incorrect.");
    
        order.validateAmount(amount);
    } catch (IllegalArgumentException e) {
        System.out.println(e.getMessage() + " Try again.");
    }
    
  3. Or, you could roll your own Exception with two different constructors, and a flag stating if the exception was due to a bad number or an empty string.

share|improve this answer
I think this could work. – Poorna Anu Apr 21 '11 at 6:21
Let me know if you want me to elaborate on any of the alternatives. – aioobe Apr 21 '11 at 6:24

Since an empty string is an 'expected' exception I would not use an exception but check for it:

if ( amount.trim().equals( string.empty) )
{
   System.out.println("string empty" );
}
else
{
   //do your other processing here
}

Another check for emptiness would be amount.trim().length == 0

If you really want to use exceptions:

if( amount.trim().equals( string.empty) )
{
   throw new IllegalArgumentException( "Amount is not given" );
}

and add another catch()

}
catch( NumberFormatException numbere)
{
}
catch( IllegalArgumentException x )
{
  // Amount not given
}
share|improve this answer
There is a String.isEmpty method. You don't need to compare against the empty string. – aioobe Apr 21 '11 at 6:15
What we need to import to handle InvalidArgumentException. I didn't find any javadoc for that. – Poorna Anu Apr 21 '11 at 6:19
Nothing. It is in the java.lang package (which is automatically imported by the JVM) – aioobe Apr 21 '11 at 6:20
@aioobe I had string.IsNullOrEmpty() since I guessed the wrong language first :-) – Mario The Spoon Apr 21 '11 at 7:05
What's that? C#? wouldn't you get a null pointer if string was actually null? confused. – aioobe Apr 21 '11 at 7:08
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.