As for the class name printing, You can use getSimpleName() of a class:
System.out.println("Create
Main Topics
Browse All TopicsGetting error at System.in.read(); and want the output only as
Created ConcreteProductA
Created ConcreteProductB
not
Created {0}examples.Factory$Concre
Created {0}examples.Factory$Concre
I am changing C# code to Java and I am getting an error near System.in.read();
unreported exception java.io.IOException; must be caught or declared to be thrown
For the C# code class ConcreteProductB : Product I am changing it to
static class ConcreteProductB extends Product . please let me know if this is right.
package examples;
public class Factory {
/** Creates a new instance of Factory */
public Factory() {
}
// Factory Method pattern -- Structural example
public static void main( String[] args ){
// An array of creators
Creator[] creators = new Creator[2];
creators[0] = new ConcreteCreatorA();
creators[1] = new ConcreteCreatorB();
for (Creator creator : creators) {
Product product = creator.FactoryMethod();
// Console.WriteLine("Created
// product.GetType().Name);
System.out.println("Create
}
// Wait for user
// Console.Read();
System.in.read();
}
// "Product"
static abstract class Product {
}
// "ConcreteProductA"
static class ConcreteProductA extends Product {
}
// "ConcreteProductB"
static class ConcreteProductB extends Product {
}
// "Creator"
static abstract class Creator {
public abstract Product FactoryMethod();
}
// "ConcreteCreator"
static class ConcreteCreatorA extends Creator {
public Product FactoryMethod() {
return new ConcreteProductA();
}
}
// "ConcreteCreator"
static class ConcreteCreatorB extends Creator {
public Product FactoryMethod() {
return new ConcreteProductB();
}
}
}
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: sciuriwarePosted on 2007-07-08 at 02:30:22ID: 19439564
System.in.read();
should be:
try
{
System.in.read();
}
catch(IOException e)
{
// EX Libris: what error from e.getMessage();
}
By the way, why not enter input via JOptionPane{} ?
;JOOP!