User Joachim Sauer - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T12:31:29Z http://stackoverflow.com/feeds/user/40342 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1816606/what-does-tool-bundle-name-export-package-etc-mean-in-a-jar-manifest/1816613#1816613 1 Answer by Joachim Sauer for What does Tool/Bundle-Name/Export-Package etc. mean in a jar manifest Joachim Sauer 2009-11-29T20:09:03Z 2009-11-29T20:09:03Z <p>From the <code>Export-Package</code> filed, I'd guess you are looking at an <a href="http://en.wikipedia.org/wiki/OSGi#Bundles" rel="nofollow">OSGi Bundle</a>.</p> <p>Check the Wikipedia article or the <a href="http://www.osgi.org/Main/HomePage" rel="nofollow">OSGi homepage</a> for details.</p> http://stackoverflow.com/questions/1810419/deleting-from-arraylist-java/1810917#1810917 4 Answer by Joachim Sauer for Deleting from ArrayList Java Joachim Sauer 2009-11-27T22:59:54Z 2009-11-27T22:59:54Z <p>While <code>List</code> and <code>ArrayList</code> don't have a direct (and accessible) <code>removeRange()</code> method, the need for such a method is removed by providing the <code>subList()</code> method.</p> <p><code>subList()</code> provides a view into a part of the original List. The important part to notice is that modifying the returned <code>List</code> will also modify the original <code>List</code>. So to remove the elements with the indices <code>index</code> to <code>index+3</code>, you could do this:</p> <pre><code>myList.subList(index, index+4).clear(); </code></pre> <p>Note that the second argument of <code>subList()</code> is exclusive, so this <code>subList()</code> call will return a <code>List</code> with a size of 4.</p> http://stackoverflow.com/questions/1806184/java-equals-failing-for-sets-jgrapht/1806214#1806214 1 Answer by Joachim Sauer for Java: .equals() failing for sets (JGraphT) Joachim Sauer 2009-11-27T00:05:22Z 2009-11-27T00:05:22Z <p>According to <a href="http://www.jgrapht.org/javadoc/org/jgrapht/graph/DefaultWeightedEdge.html" rel="nofollow">the JavaDoc</a> <code>DefaultWeightedEdge</code> hasn't implemented <code>equals()</code> and <code>hashCode()</code> and thus uses the methods defined in <code>java.lang.Object</code>. This means that two <code>DefaultWeightedEdge</code> objects <code>a</code> and <code>b</code> with the same values will <strong>not</strong> return <code>true</code> from <code>a.equals(b)</code>. That would only return <code>true</code> if <code>a</code> and <code>b</code> actually refer to the same object.</p> <p>You need to use an edge implementation class that implements <code>.equals()</code> and <code>hashCode()</code> to get useful results here.</p> http://stackoverflow.com/questions/1806098/jaxb-minoccurs0-element-exists-or-not/1806165#1806165 2 Answer by Joachim Sauer for JAXB minOccurs=0. Element exists or not? Joachim Sauer 2009-11-26T23:49:32Z 2009-11-26T23:49:32Z <p>I don't see that problem at all. For me <code>xjc</code> generates a <code>Person</code> class with the properties <code>lat</code> and <code>lon</code> with type <code>Double</code>.</p> <p>If I unmarshall an XML file with no <code>&lt;lat&gt;</code> or <code>&lt;lon&gt;</code> elements, then the resulting <code>Person</code> objects has <code>null</code> values for those properties, as I'd expect.</p> <p>I don't know how you get <code>0.0</code> anywhere.</p> <p>My XML Schema:</p> <pre><code>&lt;xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.example.com/person"&gt; &lt;xsd:element name="Person"&gt; &lt;xsd:complexType&gt; &lt;xsd:sequence&gt; &lt;xsd:element name="name" type="xsd:string" /&gt; &lt;xsd:element name="lat" type="xsd:double" minOccurs="0"/&gt; &lt;xsd:element name="lon" type="xsd:double" minOccurs="0"/&gt; &lt;/xsd:sequence&gt; &lt;/xsd:complexType&gt; &lt;/xsd:element&gt; &lt;/xsd:schema&gt; </code></pre> <p>My <code>Test.java</code>:</p> <pre><code>import com.example.person.Person; import javax.xml.bind.JAXB; import java.io.File; public class Test { public static void main(String[] args) { Person p = JAXB.unmarshal(new File("foo.xml"), Person.class); System.out.println(p.getName()); System.out.println(p.getLat()); System.out.println(p.getLon()); } } </code></pre> <p>My <code>foo.xml</code>:</p> <pre><code>&lt;Person&gt; &lt;name&gt;Fred&lt;/name&gt; &lt;lat&gt;1.0&lt;/lat&gt; &lt;/Person&gt; </code></pre> <p>Output:</p> <pre>Fred 1.0 null </pre> http://stackoverflow.com/questions/1803369/using-a-returned-string-to-call-a-method/1803381#1803381 11 Answer by Joachim Sauer for Using a returned string to call a method? Joachim Sauer 2009-11-26T12:21:28Z 2009-11-26T12:21:28Z <p>So you want the returned String to be used as the name of the method to call?</p> <p>You can do that using <a href="http://java.sun.com/docs/books/tutorial/reflect/" rel="nofollow">reflection</a>, but I'd strongly discourage this.</p> <p>Instead you will want to look into implementing a <a href="http://en.wikipedia.org/wiki/Strategy%5Fpattern" rel="nofollow">strategy pattern</a> for example.</p> http://stackoverflow.com/questions/1733770/how-to-avoid-filenotfound-exception-when-running-java-on-linux-because-of-case-se/1733867#1733867 0 Answer by Joachim Sauer for How to avoid FileNotFound exception when running Java on Linux because of case sensitiveness? Joachim Sauer 2009-11-14T10:10:35Z 2009-11-14T10:10:35Z <p>Why can't you change a lot of files? If the amount of files is really the only thing that holds you back, then simply write a little script that renames them all to lower-case.</p> http://stackoverflow.com/questions/1702120/mysql-session-variable-in-jdbc-string/1702171#1702171 1 Answer by Joachim Sauer for Mysql session variable in JDBC string Joachim Sauer 2009-11-09T16:34:51Z 2009-11-09T17:00:32Z <p>You can use <a href="http://java.sun.com/javase/6/docs/api/java/sql/Statement.html#execute%28java.lang.String%29" rel="nofollow"><code>Statement.execute()</code></a> to run pretty much every statement the DB understands, including such a <code>SET</code>-statement.</p> <p>The advantage of using an URL parameter or a dedicated method is that the JDBC-driver is actually aware that the option was set and can react accordingly. This may or may not be useful or necessary for this particular option, but it's vital for other options (for example toggling autocommit with such a statement is a very bad idea).</p> http://stackoverflow.com/questions/1702111/should-the-requirethis-check-in-checkstyle-be-enabled/1702150#1702150 0 Answer by Joachim Sauer for Should the RequireThis check in Checkstyle be enabled? Joachim Sauer 2009-11-09T16:30:23Z 2009-11-09T16:30:23Z <p>Personally I wouldn't enable it. Mostly because whenever I read code I read it in an IDE (or something else that does smart code formatting). This means that the different kind of method calls and field accesses are formatted based on their actual semantic meaning and not based on some (possibly wrong) indication.</p> <p><code>this.</code> is not necessary for the compiler and when the IDE does smart formatting, then it's not necessary for the user either. And writing unnecessary code is just a source of errors in this code (in this example: using <code>this.</code> in some places and not using it in other places).</p> http://stackoverflow.com/questions/1701113/why-shouly-i-use-hamcrest-matcher-and-assertthat-instead-of-traditional-assertx/1701143#1701143 8 Answer by Joachim Sauer for Why shouly I use Hamcrest-Matcher and assertThat() instead of traditional assertXXX()-Methods Joachim Sauer 2009-11-09T14:02:19Z 2009-11-09T14:04:23Z <p>There's no big advantage for those cases where an <code>assertFoo</code> exists that exactly matches your intent. In those cases they behave almost the same.</p> <p>But when you come to checks that are somewhat more complex, then the advantage becomes more visible:</p> <pre><code>assertTrue(foo.contains("someValue") &amp;&amp; foo.contains("anotherValue")); </code></pre> <p>vs.</p> <pre><code>assertThat(foo, hasItems("someValue", "anotherValue")); </code></pre> <p>One can discuss which one of those is easier to read, but once the assert fails, you'll get a good error message from <code>assertThat</code>, but only a very minimal amount of information from <code>assertTrue</code>.</p> <p><code>assertThat</code> will tell you what the assertion was and what you got instead. <code>assertTrue</code> will only tell you that you got <code>false</code> where you expected <code>true</code>.</p> http://stackoverflow.com/questions/1700045/vm-software-for-windows7-64bit/1700061#1700061 1 Answer by Joachim Sauer for VM Software for Windows7/64bit Joachim Sauer 2009-11-09T09:55:08Z 2009-11-09T09:55:08Z <p>"Which is the best" is usually not easily answered.</p> <p>I can only tell that I used <a href="http://www.virtualbox.org/" rel="nofollow">VirtualBox</a> successfully on Windows 7 64bit.</p> http://stackoverflow.com/questions/1698368/when-there-is-two-for-loop-the-second-one-doesnt-work/1698391#1698391 5 Answer by Joachim Sauer for When there is two for() loop, the second one doesn't work. Joachim Sauer 2009-11-08T23:48:06Z 2009-11-08T23:48:06Z <p>This is a <strong>very, very bad idea</strong>:</p> <pre><code>catch(ArrayIndexOutOfBoundsException e){} </code></pre> <p>You effectively tell the JVM to ignore any problems with your arrays that it detects. And worse than that: you don't even print anything when that happens.</p> <p>Put <em>at least</em> a <code>e.printStackTrace()</code> in there to see if a problem occurs and where.</p> <p>And as a further step: fix your array access to not exceed any limits. Catching an <code>ArrayIndexOutOfBoundsException</code> is a terribly bad idea. Avoid having it thrown at all!</p> http://stackoverflow.com/questions/1697250/difference-between-various-array-copy-methods/1697292#1697292 3 Answer by Joachim Sauer for Difference between various Array copy methods Joachim Sauer 2009-11-08T17:43:14Z 2009-11-08T18:07:51Z <ul> <li><a href="http://java.sun.com/javase/6/docs/api/java/lang/System.html#arraycopy%28java.lang.Object,%20int,%20java.lang.Object,%20int,%20int%29" rel="nofollow"><code>System.arrayCopy()</code></a> copies data from one existing array into another one and depending on the arguments only copies parts of it.</li> <li><code>clone()</code> allocates a new array that has the same type and size than the original and ensures that it has the same content.</li> <li>manual copying usually does pretty much the same thing than <code>System.arraycopy()</code>, but is more code and therefore a bigger source for errors</li> <li><code>arraynew = arrayold</code> only copies the reference to the array to a new variable and doesn't influence the array itself</li> </ul> <p>There is one more useful option:</p> <p><a href="http://java.sun.com/javase/6/docs/api/java/util/Arrays.html#copyOf%28T%5B%5D,%20int%29" rel="nofollow"><code>Arrays.copyOf()</code></a> can be used to create a copy of another array with a different size. This means that the new array can be bigger or larger than the original array and the content of the common size will be that of the source. There's even a version that makes it possible to create an array of a different type, and a version where you can specify a range of elements to copy (<a href="http://java.sun.com/javase/6/docs/api/java/util/Arrays.html#copyOfRange%28T%5B%5D,%20int,%20int%29" rel="nofollow"><code>Array.copyOfRange()</code></a>).</p> <p>Note that all of those methods make shallow copies. That means that only the references stored in the arrays are copied and the referenced objects are <em>not</em> duplicated.</p> http://stackoverflow.com/questions/1671001/compare-date-objects-with-different-levels-of-precision/1671012#1671012 3 Answer by Joachim Sauer for Compare Date objects with different levels of precision Joachim Sauer 2009-11-04T00:22:15Z 2009-11-04T00:22:15Z <p>Use a <a href="http://java.sun.com/javase/6/docs/api/java/text/DateFormat.html" rel="nofollow"><code>DateFormat</code></a> object with a format that shows only the parts you want to match and do an <code>assertEquals()</code> on the resulting Strings. You can also easily wrap that in your own <code>assertDatesAlmostEqual()</code> method.</p> http://stackoverflow.com/questions/1670646/synchronized-and-local-copies-of-variables/1670698#1670698 7 Answer by Joachim Sauer for Synchronized and local copies of variables Joachim Sauer 2009-11-03T22:57:40Z 2009-11-03T23:26:42Z <p>The reason this is flagged as a problem is because synchronizing on local variables is usually a bad idea.</p> <p><em>If</em> the object returned by <code>someGlobalInstance.getMap()</code> is always the same, then the synchronized block does in fact use that quasi-global objects monitor and the code produces the expected result.</p> <p>I also agree with the suggestion to use a synchronized wrapper, if you only need to synchronize the <code>get()</code>/<code>put()</code> calls and don't have any bigger synchronized blocks. But make sure that the Map is <em>only</em> accessed via the wrapper or you'll have another chance for bugs.</p> <p>Also note that if <code>someGlobalInstance.getMap()</code> does <em>not</em> return the same object all the time, then even your second code example will not work correctly, it could even be worse than your original code since you could synchronize on a different object than the one you call <code>get()</code> on.</p> http://stackoverflow.com/questions/1670771/in-apache-if-i-go-to-https-mysite-com-the-page-itself-is-over-https-but-all/1670783#1670783 0 Answer by Joachim Sauer for In apache, if i go to https://mysite.com, the page itself is over https, but all images/links are http://. Is there way to auto rewrite the html so its all https://? Joachim Sauer 2009-11-03T23:17:42Z 2009-11-03T23:17:42Z <p>Unless you use absolute URLs everyhwere, this should work "automagically". So you only need to check two things:</p> <ul> <li>use relative URLs to point to resources on your own server and</li> <li>make sure you're not using <code>&lt;base href="http://something"&gt;</code></li> </ul> http://stackoverflow.com/questions/1667805/generic-java-output-library-or-pattern/1667843#1667843 1 Answer by Joachim Sauer for Generic Java Output Library or Pattern Joachim Sauer 2009-11-03T14:55:32Z 2009-11-03T14:55:32Z <p>Are you talking about an interface inside a Java application?</p> <p>In that case simply provide an <code>InputStream</code>/<code>Reader</code> from which to read your data or accept an <code>OutputStream</code>/<code>Writer</code> to which you write your data.</p> <p>If you're talking about communication with external programs then do what UNIX tools do for ages:</p> <ul> <li>Read from <code>stdin</code></li> <li>Write to <code>stdout</code></li> </ul> <p>This way the user can do whatever they want:</p> <ul> <li>Pipe in the output of some other command to your code</li> <li>Pipe in the content of a file to your command</li> <li>Enter the input of your command via the keyboard</li> <li>Pipe out the output of your command to any other command or file</li> </ul> <p>The <code>InputStream</code>/<code>Reader</code>/<code>OutputStream</code>/<code>Writer</code> idea is basically the same concept applied to the Java API.</p> http://stackoverflow.com/questions/1667665/using-instanceof-with-java-enums/1667727#1667727 1 Answer by Joachim Sauer for Using instanceof with Java Enums Joachim Sauer 2009-11-03T14:38:19Z 2009-11-03T14:38:19Z <p>My (possibly flawed) analysis of your problem is that the two wildcards in your type definition are separate from each other:</p> <pre><code>Enum&lt;? extends Enum&lt;?&gt;&gt; </code></pre> <p>means "An Enum of a type that extends Enum that extends some unknown type".</p> <p>What you want is probably more like this:</p> <pre><code>Enum&lt;T extends Enum&lt;T&gt;&gt; </code></pre> <p>which means "An Enum of a type that extends Enum of itself". That is a curious recursive definition (which somehow loops back to <code>Comparable&lt;T&gt;</code>), but it's just how <code>Enum</code>s are defined.</p> <p>Of course your static method would need to take a type parameter <code>&lt;T&gt;</code> for this to work. Try this:</p> <pre><code>public static &lt;T extends Enum&lt;T&gt;&gt; MyEnum enumToEnum(final T externalEnum) { if (externalEnum instanceof MyEnum) { return (MyEnum) externalEnum; } else { return MyEnum.valueOf(externalEnum.name()); } } </code></pre> <p>Edit: fixing the compiler error caused by a wrong identifier makes the code in the question compile for me. So my analysis is definitely flawed ;-)</p> http://stackoverflow.com/questions/1667060/can-i-use-switch-case-in-actionperformed-method-in-java/1667078#1667078 4 Answer by Joachim Sauer for Can I use switch - case, in actionPerformed method in Java Joachim Sauer 2009-11-03T12:35:44Z 2009-11-03T14:23:54Z <p>Yes, you can use switch in <code>actionPerformed</code>.</p> <p>No, you can't use it like you showed it here.</p> <p><code>switch</code> only supports primitive types and <code>enum</code>s (<code>String</code> supports is comming in JDK7, however).</p> <p>Another problem is that the case-values values must be compile time constants.</p> <p>You'll need code like this:</p> <pre><code>public void actionPerformed(ActionEvent e){ if (e.getSource() == radius) { double r = validate(radius.getText()); else if (e.getSource() == height) { double h = validate(height.getText()); else if (e.getSource() == out) { out.setText(String.valueOf(h*r)); } } </code></pre> http://stackoverflow.com/questions/1650249/how-to-make-generated-classes-contain-javadoc-from-xml-schema-documentation 2 How to make generated classes contain Javadoc from XML Schema documentation Joachim Sauer 2009-10-30T14:48:47Z 2009-11-02T09:51:31Z <p>I'm currently working with an XML Schema that has <code>&lt;xsd:annotation&gt;</code>/<code>&lt;xsd:documentation&gt;</code> on most types and elements. When I generate Java Beans from this XML Schema, then the Javadoc of those Beans only contains some generic generated information about the allowed content of the type/element.</p> <p>I'd like to see the content of the <code>&lt;xsd:documentation&gt;</code> tag in the relevant places (for example the content of that tag for a complextType should show up in the Javadoc of the class generated to represent that complexType).</p> <p>Is there any way to achieve this?</p> <p><strong>Edit</strong>: this XML Schema will be used in a WSDL with JAX-WS, so this tag might be appropriate as well.</p> <p><strong>Edit 2</strong>: I've read about <code>&lt;jxb:javadoc&gt;</code>. From what I understand I can specify that either in a separate JAXB binding file or directly in the XML Schema. That would almost solve my problem. But I'd rather use the existing <code>&lt;xsd:documentation&gt;</code> tag, since Javadoc is not the primary target of the documentation (it's information about the data structure primarily and not about the Java Beans generated from it) and to allow non-JAXB tools to access the information as well. Providing the documentation in both <code>&lt;jxb:javadoc&gt;</code> and <code>xsd:documentation&gt;</code> "feels" wrong, because I'm duplicating data (and work) for no good reason.</p> <p><strong>Edit 3</strong>: Thanks to the answer by Pascal I realized that I already have half a solution: The <code>&lt;xsd:documentation&gt;</code> of <code>complexType</code>s is written to the beginning of its Javadoc! The problem is still that <em>only</em> that <code>complexType</code>s is used and <code>simpleType</code>s (which can also result in a class) and elements are still Javadoc-less.</p> http://stackoverflow.com/questions/1654022/network-online-application-in-java/1654033#1654033 1 Answer by Joachim Sauer for Network/Online application in Java Joachim Sauer 2009-10-31T10:48:10Z 2009-10-31T10:48:10Z <p>Basically an application that works on the internet works exactly the same as one that works on a LAN. There are just a few points to keep in mind:</p> <ul> <li>Finding the other party of a connection might be harder. You can't really do any broadcasts, so you might need to have some central broker server to help different clients find each other</li> <li>Network performance is usually a lot weaker. This means both bandwidth and round-trip time. While on a LAN a ping of 1-2 ms is very easy to achieve, you'll get much worse values on the internet. Different applications have different requirements here, so some might not care about the round-trip times, while for others the bandwidth is not an issue</li> <li>Some computers might not have a public IP address at all, for example if they are <a href="http://en.wikipedia.org/wiki/Network%5FAddress%5FTranslation" rel="nofollow">NATed</a>. This means that others can't connect to them. Usually they can connect to public IP addresses just fine, as long as they are the one initiating the connection (there are hacks that can help "connect" two non-public computers via UDP, but they are hard to do).</li> </ul> http://stackoverflow.com/questions/1650931/why-object-class-isassignablefromstring-class-true/1650995#1650995 3 Answer by Joachim Sauer for Why Object[].class.isAssignableFrom(String[].class) == true ? Joachim Sauer 2009-10-30T16:46:01Z 2009-10-30T17:12:25Z <p><a href="http://java.sun.com/javase/6/docs/api/java/lang/Class.html#isAssignableFrom%28java.lang.Class%29" rel="nofollow"><code>Class.isAssignableFrom()</code></a> essentially checks the <a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/typesValues.html#4.10" rel="nofollow">subtyping relation</a>. "subtype" and "subclass" are two different concepts. The class hierarchy (i.e. subclassing) is only a part of subtyping.</p> <p><a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/typesValues.html#4.10.1" rel="nofollow">Primitive types</a> and <a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/typesValues.html#4.10.3" rel="nofollow">array types</a> have special cases for subtyping.</p> <p>The rules for subtyping of array types are like this (note that "><sub>1</sub>" means "is a directy subtype of"):</p> <blockquote> <ul> <li>If <code>S</code> and <code>T</code> are both reference types, then <code>S[]</code> ><sub>1</sub> <code>T[]</code> iff <code>S</code> ><sub>1</sub> <code>T</code>.</li> <li><code>Object</code> ><sub>1</sub> <code>Object[]</code></li> <li><code>Cloneable</code> ><sub>1</sub> <code>Object[]</code></li> <li><code>java.io.Serializable</code> ><sub>1</sub> <code>Object[]</code></li> <li>If <code>p</code> is a primitive type, then: <ul> <li><code>Object</code> ><sub>1</sub> <code>p[]</code></li> <li><code>Cloneable</code> ><sub>1</sub> <code>p[]</code></li> <li><code>java.io.Serializable</code> ><sub>1</sub> <code>p[]</code></li> </ul></li> </ul> </blockquote> <p>The important part for your question is the very first item: an array type <code>X[]</code> is a subtype of an array type <code>Y[]</code> if and only if the component type <code>X</code> is a subtype of the component type <code>Y</code>.</p> <p>Also note that strictly speaking neither <code>Object[]</code> nor <code>String[]</code> are classes. They are "only" types. While every class implicitly is a type, the reverse is not true. Another example of types that are not classes are the primitive types: <code>boolean</code>, <code>byte</code>, <code>char</code>, <code>short</code>, <code>int</code>, <code>long</code>, <code>float</code> and <code>double</code> are types, but they are <em>not</em> classes.</p> <p>Another cause for confusion is the fact that you can easily get <code>java.lang.Class</code> objects representing those <em>types</em>. Again: This does <em>not</em> mean that those types are classes.</p> http://stackoverflow.com/questions/1651030/java-cast-collection-type-to-subtype/1651083#1651083 0 Answer by Joachim Sauer for Java: cast collection type to subtype Joachim Sauer 2009-10-30T16:59:26Z 2009-10-30T16:59:26Z <p><code>List&lt;A&gt;</code> is <em>not</em> a subtype of <code>List&lt;B&gt;</code>!</p> <p><a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/typesValues.html#4.10" rel="nofollow">The JLS even mentions that explicitly</a>:</p> <blockquote> <p>Subtyping does not extend through generic types: <code>T &lt;: U</code> does not imply that <code>C&lt;T&gt; &lt;: C&lt;U&gt;</code>.</p> </blockquote> http://stackoverflow.com/questions/1643549/html-determine-names-of-all-elements-on-a-page/1643610#1643610 3 Answer by Joachim Sauer for [HTML]: Determine names of all elements on a page. Joachim Sauer 2009-10-29T13:09:30Z 2009-10-29T13:09:30Z <p>The following XPath expression returns all elements that have either an <code>id</code> attribute or a <code>name</code> attribute:</p> <pre><code>//*[@id or @name] </code></pre> <p>You can test that using the <a href="https://addons.mozilla.org/de/firefox/addon/1843" rel="nofollow">Firebug Firefox Add-on</a> for example by entering this in its console:</p> <pre><code>$x('//*[@id or @name]') </code></pre> http://stackoverflow.com/questions/1643365/why-no-love-for-sql/1643394#1643394 3 Answer by Joachim Sauer for Why no love for SQL? Joachim Sauer 2009-10-29T12:31:52Z 2009-10-29T12:31:52Z <p>SQL is not a terrible language, it just doesn't play too well with others sometimes.</p> <p>If for example if you have a system that wants to represent all entities as objects in some OO language or another, then combining this with SQL without any kind of abstraction layer can become rather cumbersome. There's no easy way to map a complex SQL query onto the OO-world. To ease the tension between those worlds additional layers of abstraction are inserted (an OR-Mapper for example).</p> http://stackoverflow.com/questions/1642797/escape-char-problem-while-generating-javascript-page-through-java-code/1642855#1642855 1 Answer by Joachim Sauer for Escape char problem while generating JavaScript page through Java code? Joachim Sauer 2009-10-29T10:43:04Z 2009-10-29T10:43:04Z <p>In Java string literals the backslash character has a special meaning as a escape character. If you want to represent the backslash character itself you will need to escape it with itself.</p> <p>That's why the Java String literal <code>"\\"</code> represents a String with one letter, that letter being a backslash.</p> <p>If you want to represent a String with two backslashes you will need to escape both in your literal: <code>"\\\\"</code>.</p> http://stackoverflow.com/questions/1636363/getting-current-path-in-variable-and-using-it/1636603#1636603 2 Answer by Joachim Sauer for Getting current path in variable and using it Joachim Sauer 2009-10-28T11:11:53Z 2009-10-28T11:11:53Z <p>Ind addition to the <code>pwd</code> command and the <code>$PWD</code> environment variable, I'd also suggest you look into <code>pushd</code>/<code>popd</code>:</p> <pre> /$ <b>pushd /usr</b> /usr / /usr$ <b>pushd /var/log</b> /var/log /usr / /var/log$ <b>popd</b> /usr / /usr$ <b>popd</b> / /$ </pre> http://stackoverflow.com/questions/1632069/read-write-to-linux-pipe-using-java/1632140#1632140 0 Answer by Joachim Sauer for Read/Write to linux Pipe using Java Joachim Sauer 2009-10-27T16:42:02Z 2009-10-27T16:42:02Z <p>Pipes aren't handled in any way special by Java as far as I know. You simply open the file for writing and write to it.</p> <p>You can't really "overwrite" anything in a pipe, since you can't seek in a pipe. For the same reason a <code>RandomAccessFile</code> isn't the smartest choice to use (since a pipe is explicitely <em>not</em> a random access file). I'd suggest using a <code>FileOutputStream</code> instead.</p> <p>Also note that <code>read()</code> is not guaranteed to read until the buffer is full! It can read a single byte as well and you need to check its return value and possibly loop to read the full buffer.</p> http://stackoverflow.com/questions/1631098/css-is-helvetica-the-default-sans-serif-font-on-mac-and-arial-the-default-sans/1631173#1631173 0 Answer by Joachim Sauer for CSS: Is Helvetica the default 'sans-serif' font on Mac and Arial the default sans-serif font on Windows? Joachim Sauer 2009-10-27T14:23:41Z 2009-10-27T14:23:41Z <p>What do you want to happen on platforms that have</p> <ul> <li>Helvetica or Arial installed and</li> <li>a default sans-serif font that is neither of those?</li> </ul> <p>Or asked differently: do you always prefer Helvetica or Arial over the default, if they are installed? If you prefer the default sans-serif font in all cases, why mention those two at all?</p> http://stackoverflow.com/questions/1631091/java-double-to-string-conversion-without-formatting/1631118#1631118 2 Answer by Joachim Sauer for Java Double to String conversion without formatting Joachim Sauer 2009-10-27T14:15:08Z 2009-10-27T14:15:08Z <p>Use a fixed <a href="http://java.sun.com/javase/6/docs/api/" rel="nofollow"><code>NumberFormat</code></a> (specifically a <a href="http://java.sun.com/javase/6/docs/api/java/text/DecimalFormat.html" rel="nofollow"><code>DecimalFormat</code></a>):</p> <pre><code>double value = getValue(); String str = new DecimalFormat("#").format(value); </code></pre> <p>alternatively simply cast to <code>int</code> (or <code>long</code> if the range of values it too big):</p> <pre><code>String str = String.valueOf((long) value); </code></pre> <p>But then again: why do you have an integer value (i.e. a "whole" number) in a <code>double</code> variable in the first place?</p> http://stackoverflow.com/questions/1630862/mysql-are-the-consistency-data-loss-query-optimization-issues-i-read-about-that/1630985#1630985 2 Answer by Joachim Sauer for MySQL: are the consistency/data loss/query optimization issues I read about "that bad"? Joachim Sauer 2009-10-27T13:57:13Z 2009-10-27T13:57:13Z <p>MySQL can be used for reasonably large applications, provided you really know what you do and don't trust the defaults.</p> <p>MySQL defaults are optimized to be easy-to-use and to get started quickly and to provide best performance (usually). Other databases choose defaults that are at the very least ACID and are scalable (i.e. choose defaults that are not necessarily the best/fastest for small data sets)</p> <p>Another item is that MySQL only learned to be a "real database" relatively recent, while almost all competing products started life with full ACID in mind.</p> <p>MySQL had problems with almost all aspects of ACID at one time or another. Most of them are gone or can be configured away, but you will have to check each one. The problem with troubles in atomicity for example is that you will not notice them until you place your system under heavy load (which often coincides with it being a production system, unfortunately).</p> <p>So my summary would be: MySQL is capable of working in this environments, but it takes work. And the path it took to get to that point cost it quite a few points in the confidence area.</p> http://stackoverflow.com/questions/1819444/oop-when-is-it-an-object Comment by Joachim Sauer on OOP: When is it an object? Joachim Sauer 2009-11-30T12:18:36Z 2009-11-30T12:18:36Z I don't have time for a full answer ('though I think it's a good question), but I think it's important to disconnect the concept of an object in programming from physical objects. Many (if not most) objects in programming don't directly represent physical objects. And using that as the only metaphor seriously hinders your ability to think about the problem broadly. http://stackoverflow.com/questions/1819429/macro-too-big-to-run-keeps-not-responding Comment by Joachim Sauer on Macro too big to run, keeps 'not responding'. Joachim Sauer 2009-11-30T12:16:28Z 2009-11-30T12:16:28Z On an unrelated note: this really looks like a query that should be 1.) seriously refactored and/or 2.) be generated programmatically by your code based on some information. It looks horribly inefficient and typo-prone as it is. http://stackoverflow.com/questions/1819429/macro-too-big-to-run-keeps-not-responding Comment by Joachim Sauer on Macro too big to run, keeps 'not responding'. Joachim Sauer 2009-11-30T12:14:01Z 2009-11-30T12:14:01Z What have you written that macro in? From the code I'd guess it's Excel, but you should really tell us those nifty little details. http://stackoverflow.com/questions/1492069/how-to-execute-a-piece-of-code-only-after-all-threads-are-done/1492077#1492077 Comment by Joachim Sauer on how to execute a piece of code only after all threads are done Joachim Sauer 2009-11-29T17:51:49Z 2009-11-29T17:51:49Z @Jim: with Java 1.5 or later I wouldn't even use a CountDownLatch for such a thing, but a simple Executor. http://stackoverflow.com/questions/1810419/deleting-from-arraylist-java/1810428#1810428 Comment by Joachim Sauer on Deleting from ArrayList Java Joachim Sauer 2009-11-27T22:56:52Z 2009-11-27T22:56:52Z In Java it's <code>people.subList(index, index+4).clear()</code>. The <code>subList()</code> method make dedicated methods that act only on a selected range unnecessary. http://stackoverflow.com/questions/1807737/nan-problem-in-java/1807788#1807788 Comment by Joachim Sauer on NaN problem in Java Joachim Sauer 2009-11-27T10:05:23Z 2009-11-27T10:05:23Z <code>NaN</code> is a float value, otherwise you couldn't store it in a <code>float</code> variable. It's just not a number ;-) http://stackoverflow.com/questions/15496/hidden-features-of-java/16528#16528 Comment by Joachim Sauer on Hidden Features of Java Joachim Sauer 2009-11-27T08:12:32Z 2009-11-27T08:12:32Z @Hades32: actually the .NET VM is pretty similar to the JVM. It only got support for dynamic languages relatively recently (with the DLR) and Java 7 is about to get that support as well. And the classical &quot;EVERY language&quot; of .NET (C#, Visual Basic.NET, ...) all have pretty much exactly the same feature set. http://stackoverflow.com/questions/1806198/detect-months-with-31-days Comment by Joachim Sauer on Detect months with 31 days Joachim Sauer 2009-11-27T00:28:35Z 2009-11-27T00:28:35Z @Ether: how do you come to this conclusion? Simply because some expects programming languages to have similar shortcuts to natural language? You seem to be so fixed in your thinking about programming language that you can't imagine a language where <code>month == 4,6,9,11</code> is actually a valid expression meaning &quot;month is any of 4, 6, 9 or 11&quot;. Developing such a language is left as an exercise for the reader ;-) http://stackoverflow.com/questions/1786231/programming-languages-that-allow-unicode-in-the-names-of-functions-variables-clas/1786258#1786258 Comment by Joachim Sauer on Programming languages that allow Unicode in the names of functions/variables/classes? Joachim Sauer 2009-11-23T21:59:06Z 2009-11-23T21:59:06Z Btw, I always found it good that Unicode support is finally so widely available, but never used it (usually all my code is english-language only, although German is my native language). But I never thought about the implications of LTR scripts in programming code. It definitely breaks the text flow when the language and its keywords is RTL and the identifiers are not (or even worse: they are mixed). The <code>int</code> variable definition above renders as <code>int 0 = &lt;hebrew characters&gt;;</code> for me, which looks ... very, very strange. But maybe that looks normal to someone who's used to that script. http://stackoverflow.com/questions/1786231/programming-languages-that-allow-unicode-in-the-names-of-functions-variables-clas/1786258#1786258 Comment by Joachim Sauer on Programming languages that allow Unicode in the names of functions/variables/classes? Joachim Sauer 2009-11-23T21:54:17Z 2009-11-23T21:54:17Z Java definitely allows that (didn't want to edit your post, this doesn't really feel like a &quot;fix&quot; to me). http://stackoverflow.com/questions/1782933/java-alternative-to-iterator-hasnext-if-using-for-each-to-loop-over-a-collecti/1782964#1782964 Comment by Joachim Sauer on Java: Alternative to iterator.hasNext() if using for-each to loop over a collection Joachim Sauer 2009-11-23T13:00:17Z 2009-11-23T13:00:17Z Another problem here is that you assume that you've got a Collection (i.e. you have a size() method) and that it isn't expensive to call it. You can have a general Iterable object that doesn't provide a size() method. In that way the Iterator is the only way to go. http://stackoverflow.com/questions/1782933/java-alternative-to-iterator-hasnext-if-using-for-each-to-loop-over-a-collecti/1782953#1782953 Comment by Joachim Sauer on Java: Alternative to iterator.hasNext() if using for-each to loop over a collection Joachim Sauer 2009-11-23T12:59:25Z 2009-11-23T12:59:25Z I don't think this answers the question ... http://stackoverflow.com/questions/1733770/how-to-avoid-filenotfound-exception-when-running-java-on-linux-because-of-case-se Comment by Joachim Sauer on How to avoid FileNotFound exception when running Java on Linux because of case sensitiveness? Joachim Sauer 2009-11-14T10:12:15Z 2009-11-14T10:12:15Z Please be aware that a case-insensitive OS are the exception rather than the rule. Windows is pretty much the only major OS left that handles files in a case-insensitive way. http://stackoverflow.com/questions/1702111/should-the-requirethis-check-in-checkstyle-be-enabled/1702256#1702256 Comment by Joachim Sauer on Should the RequireThis check in Checkstyle be enabled? Joachim Sauer 2009-11-09T18:49:26Z 2009-11-09T18:49:26Z Shouldn't code like &quot;something = something&quot; be caught by another rule? I don't know all the rules, but I'm pretty sure that there is an &quot;assignment has no effect&quot; rule. http://stackoverflow.com/questions/1702111/should-the-requirethis-check-in-checkstyle-be-enabled/1702147#1702147 Comment by Joachim Sauer on Should the RequireThis check in Checkstyle be enabled? Joachim Sauer 2009-11-09T16:31:03Z 2009-11-09T16:31:03Z Oops. ... forgot the part of the question that implies that they don't behave the same ... of course that's an important part to clarify.