Best way to convert from "Simple Class Name" to "Full Class Name" to Object in Java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T01:17:11Z http://stackoverflow.com/feeds/question/730232 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/730232/best-way-to-convert-from-simple-class-name-to-full-class-name-to-object-in-ja 1 Best way to convert from "Simple Class Name" to "Full Class Name" to Object in Java Grasper 2009-04-08T14:18:13Z 2009-04-16T20:41:09Z <p>So lets say I have an object that it stored in a Database:</p> <pre><code>com.test.dummy.Cat </code></pre> <p>The cat has an integer id.</p> <p>Outside of my "world" the reference to the object is a String of the form:</p> <p>Cat-433</p> <p>Where 433 is the Cats assigned Database ID.</p> <p>When I get the String passed to me, I need to be able to find it in the Database.</p> <p>So I do this:</p> <pre><code>String[] splitString = str.split("-"); String objectType = splitString[0]; Integer id = Integer.valueOf(splitString[1]); </code></pre> <p>My question is: What would be the best way to get from <strong>Cat</strong> to <strong>com.test.dummy.Cat</strong> so I can do a Class.forName() on the String and find that object in the DB?</p> <p>I was thinking some sort of XML mapping, or hardcoded pure java mapping. What are my options?</p> http://stackoverflow.com/questions/730232/best-way-to-convert-from-simple-class-name-to-full-class-name-to-object-in-ja/730248#730248 2 Answer by tpdi for Best way to convert from "Simple Class Name" to "Full Class Name" to Object in Java tpdi 2009-04-08T14:21:37Z 2009-04-08T14:32:53Z <p>A map, like HashMap. It can be set up in code, or the pair can be read from a file using any of several classes for this purpose (e.g., in Spring).</p> <p>But in the larger picture, your plan is fragile. You have to parse a string, you have to assume you'll never use a class in another paxckage with the same name, etc.</p> <p>You probably need to rethink what you're doing, or maybe post your <em>goal</em>, not your implementation, as a question. </p> <p>Comment from OP:</p> <blockquote> <p>But since I would control the mapping from the SimpleName to the ClassName, would that really be a problem? – cloutierm (2 mins ago)</p> </blockquote> <p>In a very simple toy app, this <em>might</em> work. In a real app, you'll find that you're using library classes that have the same simple name.</p> <p>Or to put it another way, by doing this you're saying, "I'll never use Spring clasess, or Apache Commons classes or even java.lang classes without having to grep through my code looking for name clashes." It's to avoid such inevitable classes that packages were designed.</p> http://stackoverflow.com/questions/730232/best-way-to-convert-from-simple-class-name-to-full-class-name-to-object-in-ja/730369#730369 2 Answer by JeeBee for Best way to convert from "Simple Class Name" to "Full Class Name" to Object in Java JeeBee 2009-04-08T14:48:08Z 2009-04-08T14:48:08Z <p>If you already know that you're going to be reading a Cat from the database, why isn't your DAO for the Cat table coded to create a new Cat() before populating it with the values you read?</p> <p>You would have a Factory that would return a "DatabaseObject" for the method getDatabaseObject(String reference) that would do the splitting of the "Cat-433" name, use the first part to decide which DAO to call, and the second part to pass in as the UID in the DAO's <code>DatabaseObject get(int uid);</code> method.</p> http://stackoverflow.com/questions/730232/best-way-to-convert-from-simple-class-name-to-full-class-name-to-object-in-ja/757960#757960 1 Answer by Bruce for Best way to convert from "Simple Class Name" to "Full Class Name" to Object in Java Bruce 2009-04-16T20:41:09Z 2009-04-16T20:41:09Z <p>Assuming your types are read in at runtime you could populate the mapping table automatically, i.e.</p> <p>public class Cat { ... static { mapping.put("Cat", "xyz.Cat"); } ... }</p>