User sakana - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T16:14:02Z http://stackoverflow.com/feeds/user/28921 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1438394/weird-difference-between-new-date-and-filecreation-date 1 Weird difference between new Date() and FileCreation date. sakana 2009-09-17T11:56:30Z 2009-09-17T12:07:16Z <p>I'm running some test to prove a concept and i just wrote this code and found a weird situation: </p> <pre><code>public class Test { public static void main(String[] args) { Date now = new Date(); File file = new File("/root/batch-experiments/test.txt"); try { file.createNewFile(); } catch (IOException e) { System.out.println("cannot create file..."); } System.out.println(MessageFormat.format("Checking File {0}! Last Modified time is {1}. Must be newer than {2}", file.getName(), file.lastModified(), now.getTime())); if (file.lastModified() &gt;= now.getTime()) { //ignore... } else { System.out.println(MessageFormat.format("File {0} is out of date and was ignored.", file)); } } </code></pre> <p>}</p> <p>The output is:</p> <pre><code>Checking File test.txt! Last Modified time is 1,253,187,650,000. Must be newer than 1,253,187,650,496 File /root/batch-experiments/test.txt is out of date and was ignored. </code></pre> <p>How it is possible? Shouldn't be the file modified time after the new Date time? This is happening 1 in 4/5 tries.</p> <p>What i'm missing in here? </p> <p>Any way to guarantee that new Date() is older than file creation?</p> http://stackoverflow.com/questions/678481/cannot-serialize-deserialize-arraylist 1 Cannot Serialize/Deserialize ArrayList sakana 2009-03-24T17:46:12Z 2009-03-26T13:11:49Z <p>I'm trying to serialize and deserialize an array list with a object inside:</p> <pre><code>HairBirt param = new HairBirt(); param.setName("name"); param.setValue(2.3f); HairBirt param2 = new HairBirt(); param2.setName("name2"); param2.setValue(2.4f); ArrayList&lt;HairBirt&gt; list = new ArrayList&lt;HairBirt&gt;(); list.add(param); list.add(param2); ByteArrayOutputStream bos = null; try { bos = new ByteArrayOutputStream(); ObjectOutputStream obj_out = new ObjectOutputStream(bos); obj_out.writeObject(list); } catch (IOException e) { e.printStackTrace(); } String encoded = bos.toString(); try { encoded = URLEncoder.encode(encoded, "UTF-8"); } catch (UnsupportedEncodingException e1) { e1.printStackTrace(); } System.out.print("The serialized output is: " + encoded); //DECODE ArrayList&lt;HairBirt&gt; paramDecoded; String myParam = null; try { myParam = URLDecoder.decode(encoded, "UTF-8"); } catch (UnsupportedEncodingException e1) { e1.printStackTrace(); } System.out.println("Got parameters"); ByteArrayInputStream bis = new ByteArrayInputStream(myParam.getBytes()); try { ObjectInputStream obj_in = new ObjectInputStream(bis); paramDecoded = (ArrayList&lt;HairBirt&gt;) obj_in.readObject(); } catch (IOException e) { e.printStackTrace(); } catch (ClassNotFoundException e) { e.printStackTrace(); } </code></pre> <p>The HairList object is also a serializable object.</p> <p>This code execution is returning the following error:</p> <blockquote> <p><code>java.io.InvalidClassException: java.util.ArrayList; local class incompatible: stream classdesc serialVersionUID = 8664875232659988799, local class serialVersionUID = 8683452581122892189</code></p> </blockquote> <p>in line <code>paramDecoded = (ArrayList&lt;HairBirt&gt;) obj_in.readObject();</code></p> <p>I don't know what i'm doing wrong. Can you give a tip?</p> <p>Update:</p> <p><strong>Resolved:</strong> Just used a native array of HairBirt instead of a ArrayList and it works:</p> <pre><code>HairBirt[] list = new HairBirt[x]; </code></pre> <p>instead of</p> <pre><code>ArrayList&lt;HairBirt&gt; list = new ArrayList&lt;HairBirt&gt;(); </code></pre> <p>Thank you all for your help.</p> http://stackoverflow.com/questions/654852/oracle-backup-database-with-sqlplus-its-possible 0 Oracle Backup Database with sqlplus it's possible? sakana 2009-03-17T15:51:55Z 2009-03-17T16:31:40Z <p>I need to do some structural changes to a database (alter tables, add new columns, change some rows etc) but I need to make sure that if something goes wrong i can rollback to initial state:</p> <ul> <li>All needed changes are inside a SQL script file.</li> <li>I don't have administrative access to database.</li> <li>I really need to ensure the backup is done on server side since the BD has more than 30 GB of data.</li> <li>I need to use sqlplus (under a ssh dedicated session over a vpn)</li> <li>Its not possible to use "flashback database"! It's off and i can't stop the database.</li> </ul> <p>Am i in really deep $#$%?</p> <p>Any ideas how to backup the database using sqlplus and leaving the backup on db server?</p> http://stackoverflow.com/questions/381373/insert-fail-then-update-or-load-and-then-decide-if-insert-or-update 0 Insert fail then update OR Load and then decide if insert or update. sakana 2008-12-19T15:54:22Z 2008-12-20T22:05:01Z <p>I have a webservice in java that receives a list of information to be inserted or updated in a database. I don't know which one is to insert or update.</p> <p>Which one is the best approach to abtain better performance results:</p> <ol> <li><p>Iterate over the list(a object list, with the table pk on it), try to insert the entry on Database. If the insert failed, run a update</p></li> <li><p>Try to load the entry from database. if the results retrieved update, if not insert the entry.</p></li> <li><p>another option? tell me about it :)</p></li> </ol> <p>In first calls, i believe that most of the entries will be new bd entries, but there will be a saturation point that most of the entries will be to update.</p> <p>I'm talking about a DB table that could reach over 100 million entries in a mature form.</p> <p>What will be your approach? Performance is my most important goal.</p> http://stackoverflow.com/questions/287633/java-c-like-fork 6 Java - C-Like Fork? sakana 2008-11-13T17:37:01Z 2008-11-13T17:56:28Z <p>Is it possible to do a "C like" fork in java, using an new independent jvm process ?</p> <p>How?</p> http://stackoverflow.com/questions/272535/how-do-i-decompile-java-class-files/272566#272566 3 Answer by sakana for How do I "decompile" Java class files? sakana 2008-11-07T16:07:09Z 2008-11-07T16:07:09Z <p>I use <a href="http://www.kpdus.com/jad.html" rel="nofollow">JAD Decompiler</a>.</p> <p>There is a eclipse plugin to it. pretty nice: <a href="http://sourceforge.net/projects/jadclipse/" rel="nofollow">jadeclipse</a></p> http://stackoverflow.com/questions/254351/map-of-collections/254396#254396 2 Answer by sakana for Map of collections sakana 2008-10-31T18:04:41Z 2008-10-31T18:04:41Z <p>There is a problem with your code:</p> <p>Collection c = new Collection();</p> <p>Cannot be instantiated.</p> <p>I think the next piece of code will solve your problem:</p> <pre><code>public class CollectionMap&lt;K, V&gt; extends HashMap&lt;K, Collection&lt;V&gt;&gt; { ... ... ... public void add(K key, V value) { if (containsKey(key)) { get(key).add(value); } else { Collection&lt;V&gt; c = new ArrayList&lt;V&gt;(); c.add(value); super.put(key, c); } } } </code></pre> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253533#253533 2 Answer by sakana for Exceptions or error codes sakana 2008-10-31T13:50:21Z 2008-10-31T13:56:38Z <p>My approach is that we can use both, i.e. Exceptions and Errors codes at the same time. </p> <p>I'm used to define several types of Exceptions (ex: DataValidationException or ProcessInterruptExcepion) and inside each exception define a more detailed description of each problem.</p> <p>A Simple Example in Java:</p> <pre><code>public class DataValidationException extends Exception { private DataValidation error; /** * */ DataValidationException(DataValidation dataValidation) { super(); this.error = dataValidation; } } enum DataValidation{ TOO_SMALL(1,"The input is too small"), TOO_LARGE(2,"The input is too large"); private DataValidation(int code, String input) { this.input = input; this.code = code; } private String input; private int code; } </code></pre> <p>In this way i use Exceptions to define category errors, and error codes to define more detailed info about the problem.</p> http://stackoverflow.com/questions/250911/java-application-failing-on-special-characters/250944#250944 3 Answer by sakana for Java application failing on special characters. sakana 2008-10-30T17:03:30Z 2008-10-30T17:03:30Z <p>Try to use</p> <pre><code>java -Dfile.encoding=UTF-8 ... </code></pre> <p>when starting the application in both systems.</p> <p>Another way to solve the problem is to change the encoding from both system to UTF-8, but i prefer the first option (less intrusive on the system).</p> <p>EDIT:</p> <p>Check this answer on stackoverflow, It might help either:</p> <p><a href="http://stackoverflow.com/questions/81323/changing-the-default-encoding-for-stringbyte">http://stackoverflow.com/questions/81323/changing-the-default-encoding-for-stringbyte</a></p> http://stackoverflow.com/questions/244119/library-that-subverts-java-access-control-and-lets-me-access-private-member-varia/244156#244156 7 Answer by sakana for Library that subverts java access control and lets me access private member variables ? sakana 2008-10-28T17:39:19Z 2008-10-29T11:53:34Z <p>In most of the cases java <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/reflect/package-summary.html" rel="nofollow">reflection</a> solves the problem:</p> <p>Example:</p> <pre><code>public class Foo { /** * Gets the name Field. * * @return the name */ public final String getName() { return name; } /** * Sets the name Field with the name input value. * * @param name the name to set */ public final void setName(String name) { this.name = name; } private String name; } </code></pre> <p>Now the Reflection Code:</p> <pre><code>import java.lang.reflect.Field; .... Foo foo = new Foo(); foo.setName("old Name"); String fieldName = "name"; Class class1 = Foo.class; try { System.out.println(foo.getName()); Field field = class1.getDeclaredField(fieldName); field.setAccessible(true); field.set(foo, "My New Name"); System.out.println(foo.getName()); } catch (NoSuchFieldException e) { System.out.println("FieldNotFound: " + e); } catch (IllegalAccessException e) { System.out.println("Ilegal Access: " + e); } </code></pre> <p><strong>UPDATE:</strong></p> <p>It's worth mentioning that this approach can be thwarted by a SecurityManager. – Dan Dyer </p> http://stackoverflow.com/questions/246489/how-to-convert-tis-620-string-to-utf-8-string-in-java/246505#246505 1 Answer by sakana for how to convert tis-620 string to utf-8 string in java sakana 2008-10-29T11:50:25Z 2008-10-29T11:50:25Z <pre><code>import java.nio.ByteBuffer import java.nio.CharBuffer </code></pre> <p>....</p> <pre><code>public static ByteBuffer toByteBuffer(String content, String encode) { Charset charset = Charset.forName(encode); ByteBuffer bb = charset.encode(content); return bb; } </code></pre> <p>Pass as encode argument "UTF-8"</p> http://stackoverflow.com/questions/244191/what-are-your-thoughts-on-method-scoped-constants/244215#244215 1 Answer by sakana for What are your thoughts on method scoped constants? sakana 2008-10-28T18:01:07Z 2008-10-28T18:01:07Z <p>The reason why you can define a final variable at a class level or method (local) level it's because you can override the global static constant inside the (local) method. </p> <p>Example: </p> <pre><code>public class Test { final double MIN_INTEREST = 0.0; /** * @param args */ public static void main(String[] args) { Test test = new Test(); test.doSomethingLocal(); test.doSomethingGlobal(); } public void doSomethingGlobal() { System.out.println("Global-&gt; " + MIN_INTEREST); } public void doSomethingLocal() { final double MIN_INTEREST = 0.1; System.out.println("Local-&gt; " + MIN_INTEREST); } } </code></pre> <p>The output will be:</p> <pre><code>Local-&gt; 0.1 Global-&gt; 0.0 </code></pre> <p>So your question doesn't make any sense.</p> http://stackoverflow.com/questions/242914/jpa-composite-key-sequence/244051#244051 0 Answer by sakana for JPA Composite Key + Sequence sakana 2008-10-28T17:00:18Z 2008-10-28T17:00:18Z <p>Try like this:</p> <pre><code>@TableGenerator(name = "canonicalKeys", allocationSize = 1, initialValue = 1) @GeneratedValue(strategy = GenerationType.TABLE, generator = "canonicalKeys") @Column(name = "CANONICAL_ID", unique = false, nullable = false, insertable = true, updatable = true) public String getCanonicalId() { return canonicalId; } </code></pre> <p>In this way instead of using a sequence you can use a table.</p> http://stackoverflow.com/questions/243992/how-to-split-a-huge-zip-file-into-multiple-volumes/244025#244025 4 Answer by sakana for How to split a huge zip file into multiple volumes? sakana 2008-10-28T16:52:07Z 2008-10-28T16:52:07Z <p>Check: <a href="http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=38&amp;t=004618" rel="nofollow">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=38&amp;t=004618</a></p> <p><em>I am not aware of any public API that will help you do that. (Although if you do not want to do it programatically, there are utilities like WinSplitter that will do it)</em></p> <p><em>I have not tried it but, every ZipEntry while using ZippedInput/OutputStream has a compressed size. You may get a rough estimate of the size of the zipped file while creating it. If you need 2MB of zipped files, then you can stop writing to a file after the cumulative size of entries become 1.9MB, taking .1MB for Manifest file and other zip file specific elements.</em> <em>So, in a nutshell, you can write a wrapper over the ZippedInputStream as follows:</em></p> <pre><code>import java.util.zip.ZipOutputStream; import java.util.zip.ZipEntry; import java.io.FileOutputStream; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; public class ChunkedZippedOutputStream { private ZipOutputStream zipOutputStream; private String path; private String name; private long currentSize; private int currentChunkIndex; private final long MAX_FILE_SIZE = 16000000; // Whatever size you want private final String PART_POSTFIX = ".part."; private final String FILE_EXTENSION = ".zip"; public ChunkedZippedOutputStream(String path, String name) throws FileNotFoundException { this.path = path; this.name = name; constructNewStream(); } public void addEntry(ZipEntry entry) throws IOException { long entrySize = entry.getCompressedSize(); if((currentSize + entrySize) &gt; MAX_FILE_SIZE) { closeStream(); constructNewStream(); } else { currentSize += entrySize; zipOutputStream.putNextEntry(entry); } } private void closeStream() throws IOException { zipOutputStream.close(); } private void constructNewStream() throws FileNotFoundException { zipOutputStream = new ZipOutputStream(new FileOutputStream(new File(path, constructCurrentPartName()))); currentChunkIndex++; currentSize = 0; } private String constructCurrentPartName() { // This will give names is the form of &lt;file_name&gt;.part.0.zip, &lt;file_name&gt;.part.1.zip, etc. StringBuilder partNameBuilder = new StringBuilder(name); partNameBuilder.append(PART_POSTFIX); partNameBuilder.append(currentChunkIndex); partNameBuilder.append(FILE_EXTENSION); return partNameBuilder.toString(); } } </code></pre> <p><em>The above program is just a hint of the approach and not a final solution by any means</em>.</p> http://stackoverflow.com/questions/240774/mandatory-cloneable-interface-in-java/240821#240821 2 Answer by sakana for Mandatory cloneable interface in Java sakana 2008-10-27T17:51:21Z 2008-10-27T17:51:21Z <p>You don't need to redefine the clone method on the interface Modifiable.</p> <p>Check the documentation: <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Cloneable.html" rel="nofollow">http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Cloneable.html</a></p> <p>I understand that you are trying to force everyone to override clone method(), but you can't do it.</p> <p>In another way, you cannot override a class on a interface:</p> <p>The clone() method is always associated whit the Object.class and not the cloneable interface. You just can override it on another object, not in a interface.</p> http://stackoverflow.com/questions/240122/how-to-convert-string-result-of-enum-with-overridden-tostring-back-to-enum/240175#240175 9 Answer by sakana for How to convert string result of enum with overridden toString() back to enum? sakana 2008-10-27T14:56:20Z 2008-10-27T17:37:08Z <p>The best and simple way to do it is like this:</p> <pre><code>public enum AgeRange { A18TO23 ("18-23"), A24TO29 ("24-29"), A30TO35("30-35"); private String value; AgeRange(String value){ this.value = value; } public String toString(){ return value; } public AgeRange getByValue(String value){ AgeRange returnValue = null; for (final AgeRange element : EnumSet.allOf(AgeRange.class)) { if (element.toString().equals(value)) { returnValue = element; } } return returnValue; } } </code></pre> <p>Then you just need to invoke the getByValue() method with the String input in it.</p> http://stackoverflow.com/questions/217831/how-to-use-hibernate-any-related-annotations/217880#217880 2 Answer by sakana for How to use Hibernate @Any-related annotations? sakana 2008-10-20T09:26:34Z 2008-10-20T09:26:34Z <p>The @Any annotation defines a polymorphic association to classes from multiple tables. This type of mapping always requires more than one column. The first column holds the type of the associated entity. The remaining columns hold the identifier. It is impossible to specify a foreign key constraint for this kind of association, so this is most certainly not meant as the usual way of mapping (polymorphic) associations. You should use this only in very special cases (eg. audit logs, user session data, etc). The @Any annotation describes the column holding the metadata information. To link the value of the metadata information and an actual entity type, The @AnyDef and @AnyDefs annotations are used.</p> <pre><code>@Any( metaColumn = @Column( name = "property_type" ), fetch=FetchType.EAGER ) @AnyMetaDef( idType = "integer", metaType = "string", metaValues = { @MetaValue( value = "S", targetEntity = StringProperty.class ), @MetaValue( value = "I", targetEntity = IntegerProperty.class ) } ) @JoinColumn( name = "property_id" ) public Property getMainProperty() { return mainProperty; } </code></pre> <p>idType represents the target entities identifier property type and metaType the metadata type (usually String). Note that @AnyDef can be mutualized and reused. It is recommended to place it as a package metadata in this case.</p> <pre><code>//on a package @AnyMetaDef( name="property" idType = "integer", metaType = "string", metaValues = { @MetaValue( value = "S", targetEntity = StringProperty.class ), @MetaValue( value = "I", targetEntity = IntegerProperty.class ) } ) package org.hibernate.test.annotations.any; //in a class @Any( metaDef="property", metaColumn = @Column( name = "property_type" ), fetch=FetchType.EAGER ) @JoinColumn( name = "property_id" ) public Property getMainProperty() { return mainProperty; } </code></pre> <p>@ManyToAny allows polymorphic associations to classes from multiple tables. This type of mapping always requires more than one column. The first column holds the type of the associated entity. The remaining columns hold the identifier. It is impossible to specify a foreign key constraint for this kind of association, so this is most certainly not meant as the usual way of mapping (polymorphic) associations. You should use this only in very special cases (eg. audit logs, user session data, etc).</p> <pre><code>@ManyToAny( metaColumn = @Column( name = "property_type" ) ) @AnyMetaDef( idType = "integer", metaType = "string", metaValues = { @MetaValue( value = "S", targetEntity = StringProperty.class ), @MetaValue( value = "I", targetEntity = IntegerProperty.class ) } ) @Cascade( { org.hibernate.annotations.CascadeType.ALL } ) @JoinTable( name = "obj_properties", joinColumns = @JoinColumn( name = "obj_id" ), inverseJoinColumns = @JoinColumn( name = "property_id" ) ) public List&lt;Property&gt; getGeneralProperties() { </code></pre> <p>Src: <a href="http://www.hibernate.org/hib_docs/annotations/reference/en/pdf/hibernate_annotations.pdf" rel="nofollow">Hibernate Annotations Reference Guide 3.4.0GA</a></p> <p>Hope it Helps!</p> http://stackoverflow.com/questions/212350/which-anotation-should-i-use-idclass-or-embeddedid 3 Which anotation should I use: @IdClass or @EmbeddedId sakana 2008-10-17T14:21:14Z 2008-10-17T19:05:06Z <p>The JPA (Java Persistence API) specification has 2 different ways to specify entity composite keys: @IdClass and @EmbeddedId. </p> <p>I'm using both annotations on my mapped entities, but it turns out to be a big mess to people who aren't very familiar with JPA. </p> <p>I want to adopt only one way to specify composite keys. Which one is really the best? Why?</p> http://stackoverflow.com/questions/212805/in-java-how-do-i-dynamically-determine-the-type-of-an-array/212817#212817 5 Answer by sakana for In Java, how do I dynamically determine the type of an array? sakana 2008-10-17T16:16:04Z 2008-10-17T16:26:20Z <p>Just Write </p> <pre><code>Class ofArray = o.getClass().getComponentType(); </code></pre> http://stackoverflow.com/questions/211477/reflecting-methods-actions-in-java/212474#212474 2 Answer by sakana for Reflecting method's actions in Java sakana 2008-10-17T14:49:48Z 2008-10-17T14:49:48Z <p><a href="http://www.eclipse.org/aspectj/" rel="nofollow">Aspect J</a> will solve your problem.</p> <p>Try to define a pointcut like this: </p> <pre><code>pointcut profilling(): execution(public * *(..)) &amp;&amp; ( within(com.myPackage..*) || </code></pre> <p>In this way you will catch all the call to any public method within the package com.myPackage. Add as many within clauses you need.</p> <p>Then add the following code:</p> <pre><code>Object around(): profilling() { //Do wherever you need before method call proceed(); //Do wherever you need after method call } </code></pre> <p>IF you want to learn something more about aspectJ follow this <a href="http://www.eclipse.org/aspectj/doc/released/progguide/index.html" rel="nofollow">guide</a>.</p> http://stackoverflow.com/questions/678481/cannot-serialize-deserialize-arraylist/678499#678499 Comment by sakana on Cannot Serialize/Deserialize ArrayList sakana 2009-03-24T18:13:23Z 2009-03-24T18:13:23Z What do you mean by 'on that move'? I mean that I really need to use a String between the Encode and Decode code. It's the only parameter type i'm able to use. http://stackoverflow.com/questions/678481/cannot-serialize-deserialize-arraylist/678499#678499 Comment by sakana on Cannot Serialize/Deserialize ArrayList sakana 2009-03-24T17:57:26Z 2009-03-24T17:57:26Z Yup, that's the problem, but i really need to use String on that move... This is not the real problem, it's a simplification of it. http://stackoverflow.com/questions/654852/oracle-backup-database-with-sqlplus-its-possible/654956#654956 Comment by sakana on Oracle Backup Database with sqlplus it's possible? sakana 2009-03-17T16:37:11Z 2009-03-17T16:37:11Z Thks 4 your answer. http://stackoverflow.com/questions/654852/oracle-backup-database-with-sqlplus-its-possible/654970#654970 Comment by sakana on Oracle Backup Database with sqlplus it's possible? sakana 2009-03-17T16:36:36Z 2009-03-17T16:36:36Z Seems to be a good approach near of what i'm looking for. Thks :) http://stackoverflow.com/questions/67666/backup-restore-database-for-oracle-10g-testing-using-sqlplus-or-rman/70060#70060 Comment by sakana on Backup/Restore database for oracle 10g testing using sqlplus or rman sakana 2009-03-17T15:45:47Z 2009-03-17T15:45:47Z And if the database changes are structural changes? http://stackoverflow.com/questions/381373/insert-fail-then-update-or-load-and-then-decide-if-insert-or-update/381422#381422 Comment by sakana on Insert fail then update OR Load and then decide if insert or update. sakana 2008-12-19T16:22:25Z 2008-12-19T16:22:25Z YES! It supports merge :) Thank god :) http://stackoverflow.com/questions/381373/insert-fail-then-update-or-load-and-then-decide-if-insert-or-update Comment by sakana on Insert fail then update OR Load and then decide if insert or update. sakana 2008-12-19T16:00:45Z 2008-12-19T16:00:45Z No. it does not auto increment in inserts. http://stackoverflow.com/questions/287633/java-c-like-fork/287699#287699 Comment by sakana on Java - C-Like Fork? sakana 2008-11-14T13:42:18Z 2008-11-14T13:42:18Z I simply want to avoid the sharing that thread implies. Thks for your concern :) http://stackoverflow.com/questions/240122/how-to-convert-string-result-of-enum-with-overridden-tostring-back-to-enum/240175#240175 Comment by sakana on How to convert string result of enum with overridden toString() back to enum? sakana 2008-10-27T17:36:18Z 2008-10-27T17:36:18Z I Agree with you Jon Skeet :) Changing... http://stackoverflow.com/questions/212805/in-java-how-do-i-dynamically-determine-the-type-of-an-array/212817#212817 Comment by sakana on In Java, how do I dynamically determine the type of an array? sakana 2008-10-17T16:27:10Z 2008-10-17T16:27:10Z yeah you are right. I didn't understand the question. Now it should work.