active questions tagged best-practices+or+java+or+subversion+or+svn+or+swt+or+eclipse-rcp+or+eclipse-plugin+or+regex+or+regexp+or+scm+or+version-control+or+source-control+or+architect+or+architecture - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T12:58:30Zhttp://stackoverflow.com/feeds/tag/best-practices+or+java+or+subversion+or+svn+or+swt+or+eclipse-rcp+or+eclipse-plugin+or+regex+or+regexp+or+scm+or+version-control+or+source-control+or+architect+or+architecturehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1803254/store-password-field-in-encryption-form-using-mysql-and-hibernate0Store Password Field in Encryption Form Using MySQL and HibernateNirmal2009-11-26T11:52:20Z2009-11-26T12:47:58Z
<p>Hello All..</p>
<p>I am using Spring, Hibernate for developing my application..</p>
<p>And as DB side, I have mysql..</p>
<p>Now, My requirement is like, I have User table and that has password field with varchar type.</p>
<p>Now, When new user is created, i just wanna store password field in the Encrypted form...</p>
<p>Is there any facility provided by Hibernate to do so ? Or is there any other way to do so..</p>
<p>Thanks in advance..</p>
http://stackoverflow.com/questions/1802656/java-regex-problem-using-the-all-character-symbol1Java: RegEx Problem (using the '.' all character symbol)Graham2009-11-26T09:46:21Z2009-11-26T12:18:30Z
<p>I have some document stored as a large String. In the String I have some inline XML tags and I want to get out the words inbetween the tags. The documents may also contain HTML tags, as the documents are often web sites.</p>
<p>Example Document:</p>
<blockquote>
<p>"< tr > My name is < b >< PERSON >Bobby< /PERSON >< /b >, I live in the USA."</p>
</blockquote>
<p>Current RegEx:</p>
<pre><code>Pattern p = Pattern.compile("<(LOCATION|PERSON|ORGANIZATION)>[\\w[ '\"/\\!%$\\(\\)\\-\\+]]*</(LOCATION|PERSON|ORGANIZATION)>");
Matcher m = p.matcher("I'm <PERSON>Graham Brown</PERSON> I went to the <LOCATION>USA'S</LOCATION>");
while(m.find()){
System.out.println(m.group());
}
</code></pre>
<blockquote>
<p>Result = < PERSON >Bobby< /PERSON > < LOCATION >USA< /LOCATION ></p>
</blockquote>
<p>This works fine with pretty much most puntuation and grammer, but the Regex should allow any character pattern to be found between the tags. When I try using '.' (any character), as below it returns the whole String.</p>
<blockquote>
<p>"< tr > My name is < b >< PERSON >Bobby< /PERSON >< /b >, I live in the USA."</p>
</blockquote>
<pre><code> Pattern p = Pattern.compile("<(LOCATION|PERSON|ORGANIZATION)>.</(LOCATION|PERSON|ORGANIZATION)>");
</code></pre>
<p>How do I return any characters between the angular openinng and closing tags?</p>
<p>EDIT: Thanks for your responses. Just and for helping get the correct answer.
For clarification I have marked Named Entites using NER. If you are unware of what this is please see some of the papers I have referenced at the bottom.</p>
<p>All I am interested in is getting the text between the three opening and closing tags. There are no other tags and the documents are not XML files and I am not parsing all the HTML tags nor I am I interested in them. All I am interested in is parsing the XML tags that I have created hence I though RegEx would be the simplest way to do so.</p>
<p>Papers to be added later...</p>
http://stackoverflow.com/questions/1802444/how-to-use-an-interface-as-maps-key0 How to use an Interface as Map’s KeyMargrethe2009-11-26T09:03:51Z2009-11-26T12:00:31Z
<p>I am looking for help on the subject how to use an Interface as Maps Key. I tried to implement a solution, and get no compiletime errors but runtime errors when running my integration tests. Is it not possible to use an Interface as a Key, or is it my tests there is something wrong with?</p>
<p>My code looks something like this</p>
<pre><code>private Map<AInterface, Values> myMap = new HashMap<AInterface, Values>();
</code></pre>
<p>Upon retreiving the set of keys from myMap they do contain objects with expected Id, but are compared to not-equal. So when using myMap.get(Object key) i get null, eventhough an object with the same id is there. When using the concrete class instead of the interface all tests pass:</p>
<pre><code>private Map<AClass, Values> myMap = new HashMap<AClass, Values>();
</code></pre>
<p>I've read
<a href="http://java.sun.com/developer/technicalArticles/J2SE/generics/" rel="nofollow">http://java.sun.com/developer/technicalArticles/J2SE/generics/</a>
where it states that for a Map, you are required to replace the type variables K and V by concrete types that are subtypes of Object. </p>
<p>Since the compiler does not give me any warnings when using an Interface for K, my guess would have been that the tests have errors.</p>
<p>Does anybody have any experience with using Interfaces as Key in a Map? And could give me any hints on what I am doing wrong?</p>
http://stackoverflow.com/questions/1800368/regular-expression-search-omit-lines1regular expression search, omit linesFatDaemon2009-11-25T22:29:47Z2009-11-26T12:53:39Z
<p>Hi I want to search something in the file which looks similar to this : </p>
<pre><code>Start Cycle
report 1
report 2
report 3
report 4
End Cycle
</code></pre>
<p>.... goes on and on..</p>
<p>I want to search for "Start Cycle" and then pull out report 1 and report 3 from it.. My regex looks something like this</p>
<pre><code>(Start Cycle .*\n)(.*\n)(.*\n)(.*\n)
</code></pre>
<p>The above regex select Start Cycle and the next three lines.. But i want to omit the thrid line from my result. Is that possible? Or any easier perl script can be done??
I am expecting a result like : </p>
<pre><code>Start Cycle
report 1
report 3
</code></pre>
http://stackoverflow.com/questions/1803375/how-to-disable-scrolling-from-mouse-wheel-in-a-jscrollpane-header0How to disable scrolling from mouse wheel in a JScrollPane header ?Sobe2009-11-26T12:21:01Z2009-11-26T12:28:41Z
<p>Hello,</p>
<p>I am currently working on a SWING frame with a <strong>JScrollPane (including a JComponent), with a row header and a column header</strong> (which are also JComponents). When the mouse is over the JComponent or one of these 2 headers, mouse wheel provokes scrolling.</p>
<p>What I want to do is to <strong>disable this scrolling when the mouse is over the column header</strong>, but I can't find a direct way nor in JScrollPane instance, nor in JComponent.
For information, I had a look at these sources : </p>
<ul>
<li><a href="http://java.sun.com/docs/books/tutorial/uiswing/components/scrollpane.html" rel="nofollow">Sun's Howto on JScrollPane</a></li>
<li><a href="http://java.sun.com/javase/6/docs/api/javax/swing/JScrollPane.html" rel="nofollow">JScrollPane javadoc</a></li>
<li><a href="http://java.sun.com/javase/6/docs/api/javax/swing/JComponent.html" rel="nofollow">JComponent javadoc</a></li>
</ul>
<p>Thank you in advance if you have a way to do that.</p>
http://stackoverflow.com/questions/1802120/building-sql-strings-in-access-vba1Building SQL strings in Access/VBADale Halliwell2009-11-26T07:41:23Z2009-11-26T12:01:00Z
<p>Occasionally, I have had to build a SQL string in VBA and execute it with <code>Docmd.RunSql()</code>. I have always built these strings by concatenating variables into the string, e.g:</p>
<pre><code>Dim mysqlstring as String
mysqlstring = "INSERT INTO MyTable (Field1, Field2, Field3 ...) VALUES ("
mysqlstring = mysqlstring + Me.TextMyField1 + ", " 'parameter comments
mysqlstring = mysqlstring + Me.TextMyField2 + ", "
mysqlstring = mysqlstring + Me.TextMyField3 + ", "
...
mysqlstring = mysqlstring + ");"
Docmd.RunSql mysqlstring
</code></pre>
<p>VBA doesn't seem to have a unary concatenation operator (like +=) and while this doesn't look ideal, at least I can comment each of my parameters and change them independently. It makes it easier to read and to change than one monster concatenated string. But it still seems like a terrible way to build SQL strings. I have one with about 50 parameters at work, so 50 lines of <code>mysqlstring = mysqlstring +...</code>. Not cute.</p>
<p>Incidentally, that rules out the use of line-continuations to format the string, as there is a <a href="http://www.dailydoseofexcel.com/archives/2005/04/18/line-continuation-limit/" rel="nofollow">limit on the number of line-continuations you can use on a single string</a> (hint: less than 50). Also, VBA doesn't let you put a comment after the line-continuation, grr!</p>
<p>Up until recently, I thought this was the only way to build these strings. But recently I have seen a different pattern, injecting the parameters in the string like <a href="http://stackoverflow.com/questions/1775066/data-type-mismatch-in-criteria-expression">this question (VB.NET</a>) that I posted an answer on, and wondered if there was an equivalent of <code>Parameters.AddWithValue()</code> for VBA, or if that would even be any better than the string concatenation approach. So I figured that this deserves its own question. Maybe there's something I'm missing here.</p>
<p><strong>Can some of the Access experts please clarify what are the best practices for building SQL strings in Access/VBA.</strong> </p>
http://stackoverflow.com/questions/1803384/render-svg-stored-in-memory-using-jsr-226-blackberry0Render SVG stored in memory using JSR-226 (Blackberry)HughOBrien2009-11-26T12:21:37Z2009-11-26T12:40:51Z
<p>I have code that generates a data-driven SVG graph and I'd like to display the graph directly.
The method:</p>
<pre><code>javax.microedition.m2g.ScalableImage.createImage
</code></pre>
<p>can take either a URI or an InputStream as the source data for the graph, what would be a good way to pass my graph data in? It's in String form in memory, so from what I can see I can either create a custom class extending InputStream (would prefer not to), or write the SVG data to disk and have it read back in. Is there any better ways of doing this?</p>
http://stackoverflow.com/questions/1803324/android-frame-by-frame-animation-problem-on-elements-in-a-cursoradapter0Android Frame by Frame Animation problem on elements in a CursorAdapterPandalover2009-11-26T12:09:32Z2009-11-26T12:09:32Z
<p>Hi,</p>
<p>I am having trouble applying an animation to a View. I am trying to load the animation from inside the constructor of a CursorAdapter, so I can set it later assign it to certain children in the list.</p>
<p>In the constructor I have :</p>
<pre><code>shineAnimation = AnimationUtils.loadAnimation(ctx, R.anim.news_list_item_shine);
</code></pre>
<p>the animation is in my res/anim dir </p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="true">
<item android:drawable="@drawable/shine1" android:duration="200" />
<item android:drawable="@drawable/shine2" android:duration="200" />
<item android:drawable="@drawable/shine3" android:duration="200" />
<item android:drawable="@drawable/shine4" android:duration="200" />
<item android:drawable="@drawable/shine5" android:duration="200" />
</animation-list>
</code></pre>
<p>I'm getting an exception :
Unknown animation name: animation-list</p>
<p>Help would be much appreciated</p>
<p>Thanks
S</p>
http://stackoverflow.com/questions/1743538/should-i-document-my-private-methods15Should I document my private methods?Jader Dias2009-11-16T17:14:23Z2009-11-26T11:43:12Z
<p>Private methods documentation can only be seen by who has access to the source code. Is it worth the effort spent on it?</p>
http://stackoverflow.com/questions/1800658/unit-testing-how-to-go-about-it4Unit Testing - How to go about it?~mathepic2009-11-25T23:27:32Z2009-11-26T11:33:29Z
<p>I want to unit test my program (in C) because I know of the benefits of doing so as well, as it shows where the problem is.</p>
<p>I also like to blackbox test, since it tells me if the program works (at least, for the tests).</p>
<p>At the moment, I am using Autotest (Which comes with Autoconf) in order to not add a dependency.</p>
<p>At this point, I wouldn't mind so much using a better framework, but the problem is I don't want to use a different framework for blackbox and unit tests. Would it be possible to run the blackbox tests from a unit test framework? The thing I really would like is good log output, saying exactly what went wrong and where.</p>
<p>My other option is to unit test with Autotest. The problem is there is no framework. I have written a small "test driver" that accepts the name of the function to test and arguments to pass to the function, and calls that function. The problem is that I am not sure what boundary to use between assertions and outputting the return value of the function (for logging purposes, since I like how Autotest will give me a diff). Since most functions return lists, it is quicker to prepare using the diff with expected output (expout using Autotest).</p>
http://stackoverflow.com/questions/1800423/what-is-the-performance-penalty-of-operator-overloading-stl0What is the performance penalty of operator overloading STLajay2009-11-25T22:40:03Z2009-11-26T11:28:38Z
<p>I like STL a lot. It makes coding algorithms very convenient since it provides you will all the primitives like parition, find, binary_search, iterators, priority_queue etc. Plus you dont have to worry about memory leaks at all.</p>
<p>My only concern is the performance penalty of operator overloading that is necessary to get STL working.
For comparison, I think it relies that == provides the needed semantics. We need to overload ==operator if we are adding our classes to a container.</p>
<p>How much efficiency am I losing for this convenience?</p>
<p>Another aside question regarding memory leaks:</p>
<ol>
<li>Can memory leak ever happen when using STL containers?</li>
<li>Can a memory leak ever happen in Java?</li>
</ol>
http://stackoverflow.com/questions/1802991/regex-match-sql-print-blocks-with-quoted-text-in-it0Regex: match SQL PRINT blocks with quoted text in itJonasVH2009-11-26T10:53:11Z2009-11-26T12:43:52Z
<p>Hi all,</p>
<p>I got the following text:</p>
<blockquote>
<p>PRINT CONVERT(NVARCHAR,
CURRENT_TIMESTAMP, 111) + ' ' +
CONVERT(NVARCHAR, CURRENT_TIMESTAMP,
108)
+ ' -Test Mode : ' + (CASE WHEN @turbo_mode_ind = 1 THEN
'some text ''test'' some more text.'
ELSE 'and even more text ''temp'' when
will it stop ?' END)</p>
<p>PRINT 'text don''t text'</p>
<p>PRINT 'text ''test2'' text'</p>
</blockquote>
<p>and what I want to match is:</p>
<blockquote>
<p>PRINT CONVERT(NVARCHAR,
CURRENT_TIMESTAMP, 111) + ' ' +
CONVERT(NVARCHAR, CURRENT_TIMESTAMP,
108)
+ ' -Test Mode : ' + (CASE WHEN @turbo_mode_ind = 1 THEN
'some text ''test''</p>
<p>PRINT 'text ''test2''</p>
</blockquote>
<p>So basically I want to match:</p>
<ul>
<li>starting at PRINT</li>
<li>each char that comes after PRINT (.*)</li>
<li>inclusive line-breaks (don't stop at
line-breaks)</li>
<li>with \'{2}\w+\'{2} at the end of the
match</li>
<li>non-greedy (.*?)</li>
<li>AND no empty line(s) between PRINT
and \'{2}\w+\'{2}</li>
</ul>
<p>I've already compsed this, but it still matches empty line(s):</p>
<p><strong>PRINT.<em>?\'{2}\w+\'{2}(?!\n\s</em>\n)</strong></p>
<p>Thx for the help</p>
http://stackoverflow.com/questions/1802859/how-to-find-a-string-between-two-other-strings-with-regex0How to find a string between two other strings with regex?Peter2009-11-26T10:28:45Z2009-11-26T12:09:55Z
<p>In a <a href="http://stackoverflow.com/questions/1237/regex-to-pull-out-a-section-a-substing-from-a-string-between-two-tags">sort-of-duplicate</a>, the answer was : </p>
<pre><code>\[start\](.*?)\[end\]
</code></pre>
<p>but that yields the [start] and [end] tag too. How do you omit them?</p>
<p>E.g.: <code>f("[somestartstring]result[someendstring]") == "result"</code></p>
<p>UPDATE: the suggested answers are not working. My code is:</p>
<pre><code>printfn "%s" (Regex.Match(@"[start]result[end]",
"\\[start\\](.*?)\\[end\\]").Groups.[0].Value)
</code></pre>
<p>but it still yields the surrounding start and end tags.</p>
<p>My mistake is: the 0 index! Thank you.</p>
http://stackoverflow.com/questions/1798002/numerical-integration-in-java1Numerical integration in Java?Zenzen2009-11-25T16:08:51Z2009-11-26T11:43:15Z
<p>Are there any libraries for Java to do numerical integration? I did ask google but failed to find anything, so should I implement my own methods (like trapeze method, simpson's method or whatever, it's been some time since I had my numerical analysis class)?</p>
http://stackoverflow.com/questions/1159635/faces-on-was-6-10Faces on WAS 6.1Nisse2009-07-21T14:41:48Z2009-11-26T11:23:43Z
<p>Hello, I'm running Java Facets on a IBM WebSphere 6.1. I'm getting
this strange error message when I start the server:</p>
<p>[2009-07-21 15:49:35:784 CEST] 00000015 ServletWrappe E SRVE0100E: Did not realize init() exception thrown by servlet Faces Servlet: java.lang.IllegalStateException: ApplicationAssociate ctor not called in same callstack as FacesConfigParser.contextInitialized(). </p>
<p>Does anyone have an idea what's wrong?</p>
http://stackoverflow.com/questions/1803446/what-technology-i-should-use-to-develop-small-java-webservice1What technology I should use to develop small Java webservice?newbie2009-11-26T12:38:38Z2009-11-26T12:47:31Z
<p>Basically I need webservice where client can request with id one boolean value from our webservice. What technology would be most suitable for this small API? Of course it is possible that there will be more functions to interface, but now we need only one function. It also needs to have authentication, so that only auhtorized clients can access service. And every client have different auth credientials.</p>
<p>What would be good technology for this purpose?</p>
http://stackoverflow.com/questions/1803021/is-there-a-better-way-to-use-sorting-and-filtering-with-ilazytreecontentprovider1Is there a better way to use sorting and filtering with ILazyTreeContentProviderSvilen2009-11-26T10:58:46Z2009-11-26T12:15:25Z
<p>Apparently if using <code>ILazyTree(TreePath)ContentProvider</code> sorting and filtering is not supported by <code>TreeViewers</code>. So setting <code>ViewerFilters</code> or <code>Sorters/Comparators</code> to your TreeView won't do any good. Perhaps this is related to not knowing all elements, including those not visible at the moment. </p>
<p>In support to this statement here is javadoc excerpt from <code>org.eclipse.jface.viewers.TreeViewer</code> class:</p>
<blockquote>
<p>If the content provider is an
<code>ILazyTreeContentProvider</code> or an
<code>ILazyTreePathContentProvider</code>, the underlying Tree must be
created using the {@link SWT#VIRTUAL} style bit, the tree viewer will not
support sorting or filtering, and hash lookup must be enabled by calling
{@link #setUseHashlookup(boolean)}. </p>
</blockquote>
<p>The only solution I see at the moment is to get the children for each node already ordered. If you need dynamic sorting, i.e., being able to switch sorting order in desc or asc order during run time, then you need to come up with your own solution for this, monitoring a boolean flag of sorts when filling and updating children for example.</p>
<p>Are you aware possibly of better solutions, perhaps more jface API involving?</p>
http://stackoverflow.com/questions/1802809/javas-weakhashmap-and-caching-why-is-it-referencing-the-keys-not-the-values1Java's WeakHashMap and caching: Why is it referencing the keys, not the values?Matthias2009-11-26T10:16:51Z2009-11-26T11:43:20Z
<p>Java's <a href="http://developer.android.com/reference/java/util/WeakHashMap.html" rel="nofollow">WeakHashMap</a> is often cited as being useful for caching. It seems odd though that its weak references are defined in terms of the map's keys, not its values. I mean, it's the values I want to cache, and which I want to get garbage collected once no-one else besides the cache is strongly referencing them, no?</p>
<p>In which way does it help to hold weak references to the keys? If you do a <code>ExpensiveObject o = weakHashMap.get("some_key")</code>, then I want the cache to hold on to 'o' until the caller doesn't hold the strong reference anymore, and I don't care at all about the string object "some_key".</p>
<p>Am I missing something?</p>
http://stackoverflow.com/questions/1802731/what-are-the-hurdles-and-dangers-when-migrating-from-visual-sourcesafe-to-svn0What are the hurdles and dangers when migrating from Visual SourceSafe to SVN?Abel2009-11-26T10:01:28Z2009-11-26T11:27:13Z
<p>A client still uses Visual SourceSafe, but after showing the numerous dangers and deficiencies of VSS, they've decided to migrate from VSS to SVN Subversion.</p>
<p>The choice-to-be seems Tortoise SVN with AnkhSVN (good choice?). A migration aid <a href="http://www.poweradmin.com/sourcecode/vssmigrate.aspx" rel="nofollow">is described here</a>. The project contains two websites, a few web applications, several control and function libraries.</p>
<p>It seems to me that a <a href="http://stackoverflow.com/questions/94058/moving-from-vss-to-svn/94340#94340">"sweep all VSS related"</a> and then "import in SVN" is the way to go. But worlds aren't perfect. What are the problems we should watch out for and what measures can we take to have this process run smoothly? Are there typical SVN for .NET issues that we should be aware of?</p>
<p><em>EDIT:</em> is it possible somehow to migrate the VSS history too, or should we consider this a new start only?</p>
http://stackoverflow.com/questions/1803503/why-are-java-enums-not-cloneable0Why are Java enums not cloneable?Christian Strempfer2009-11-26T12:49:06Z2009-11-26T12:56:21Z
<p>Is there any reason why enums in Java cannot be cloned?</p>
<p>The manual states that </p>
<blockquote>
<p>This guarantees that enums are never cloned, which is necessary to preserve their "singleton" status. </p>
</blockquote>
<p>But returning the instance itself, would also preserve it's status and I would be able to handle associated enums the same way as other cloneable objects.</p>
<p>One may argue that </p>
<blockquote>
<p>The general intent [of clone()] is that, for any object x, the expression:
<code>x.clone() != x</code> will be true, [...]</p>
</blockquote>
<p>But for singletons on the contrary I want <code>x.clone() == x</code> to be true.</p>
<p>So is there any real reason why enums cannot be cloned or did they forget to think about singletons, when <code>clone()</code> was specified?</p>
<p>P.S.:
I ask this question because I am developing within a model-driven environment at which huge parts of the application are generated. And now I have to introduce on more unnecessary case differentiation (as for primitives).</p>
http://stackoverflow.com/questions/1800690/paint-like-control-within-a-web-page0"paint" like control within a web pageSri2009-11-25T23:36:35Z2009-11-26T12:34:03Z
<p>I am looking for a Java UI control which allows users to draw drawings which can internally stored as an image. I am looking for a very light weight control which does not slow down the page rendering.</p>
<p>Any pointer?</p>
<p>~Sri</p>
http://stackoverflow.com/questions/1803255/how-can-i-get-read-all-the-parameters-of-an-applet1How can I get read all the parameters of an applet?Francisco Passos2009-11-26T11:52:44Z2009-11-26T12:08:04Z
<p>There's getParameter() which is fine for reading a parameter I know of.</p>
<p>However, should I want (for lib architecture reasons) to read all the parameters that have been passed to an applet, is there a way to do it?</p>
<p>I've looked at the API and googled a bit, but no luck.</p>
http://stackoverflow.com/questions/1802722/regex-masters-ipv63Regex masters - ipv6..imnotneo2009-11-26T09:59:39Z2009-11-26T11:38:14Z
<p>So I need to match an ipv6 address which may or may not have a mask. Unfortunately I can't just use a library to parse the string.</p>
<p>The mask bit is easy enough, in this case:</p>
<pre><code>(?:\/\d{1,3})?$/
</code></pre>
<p>The hard part is the different formats of an ipv6 address. It needs to match ::beef, beef::, beef::beef, etc.</p>
<p>An update: I'm almost there..</p>
<pre><code>/^(\:\:([a-f0-9]{1,4}\:){0,6}?[a-f0-9]{0,4}|[a-f0-9]{1,4}(\:[a-f0-9]{1,4}){0,6}?\:\:|[a-f0-9]{1,4}(\:[a-f0-9]{1,4}){1,6}?\:\:([a-f0-9]{1,4}\:){1,6}?[a-f0-9]{1,4})(\/\d{1,3})?$/i
</code></pre>
<p>I am, in this case restricted to using perl's regex.</p>
http://stackoverflow.com/questions/1803369/using-a-returned-string-to-call-a-method2Using a returned string to call a method?Mac2009-11-26T12:18:34Z2009-11-26T12:54:34Z
<p>I have an ArrayList and wish to be able to call an index and use the returned string for a method call.</p>
<p>e.g.</p>
<pre><code>stringList.get(2)();
</code></pre>
<p>Is there any way I could go about this?</p>
http://stackoverflow.com/questions/1803075/complete-list-of-available-java-system-properties-and-known-values1Complete list of available Java System Properties and Known Valuessfussenegger2009-11-26T11:14:31Z2009-11-26T12:33:26Z
<p><em>I've been inspired by another question: <a href="http://stackoverflow.com/questions/487590/best-practice-for-using-java-system-properties">Best Practice for Using Java System Properties</a></em></p>
<p>I'm currently looking for a complete list of Java system properties and possible values. I'm working on a simple class to simplify use of them (If you're interested, <a href="http://techblog.molindo.at/files/SystemProperty.java" rel="nofollow">get the source</a> and <a href="http://techblog.molindo.at/2009/11/java-system-properties.html" rel="nofollow">background info (my blog)</a>). With this class, I try to provide the following:</p>
<ul>
<li>simple and consistent access to Java system properties (no String constants)</li>
<li><em>full</em> documentation of available properties and their possible values – within my IDE (i.e. auto-completion, inline Javadoc)</li>
<li>fix inconsistencies in returned values and/or naming</li>
<li>make sure that java.io.tmpdir exists – acutally that’s the main reason why I’m doing all this :)</li>
</ul>
<p>To get full documentation and a complete list of available properties (even those where availability is heavily JVM-dependent), I'd like you to <a href="http://techblog.molindo.at/files/SystemProperty.java" rel="nofollow">download the source</a>, run it and post your results. I'll update the class accordingly and keep it available at the given location. Hopefully, it will ease live of some of you out there :)</p>
<p>Edit:</p>
<p>I'm not looking for standard properties as described by <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/System.html#getProperties%28%29" rel="nofollow">System.getProperties()</a> or all properties that are available on my system. I'm trying to create a comprehensive list of system properties - even those that are vendor, jvm or version related - those that aren't guaranteed to exist and whose documentation is sparse or hard to find. Properties like </p>
<ul>
<li>sun.desktop (Linux only, e.g. "gnome"), </li>
<li>awt.toolkit (Mac only, e.g. apple.awt.CToolkit)</li>
<li>sun.cpu.endian (Sun JVMs only)</li>
<li>...</li>
</ul>
<p>I'd love to get others to run my code and post their results in order to compile a comprehensive list (with extensive documentation of properties and their possible values) in the form of a Java enum that's easy to use e.g.:</p>
<pre><code>String file = SystemProperty.JAVA_IO_TMPDIR + "file.txt";
</code></pre>
<p>instead of </p>
<pre><code>String tmp = System.getProperty("java.io.tmpdir");
if (!tmp.endsWith(File.separator)
tmp += File.separator;
new File(tmp).mkdirs(); // make sure tmp exists
String file = path + "file.txt"
</code></pre>
<p>So please run that code and post your findings. Here is a simple script to get you started:</p>
<pre><code>#!/bin/bash
# download and run
# you should really look at the code first, as you can't be sure
# that I'm a trustworthy guy ;)
wget http://techblog.molindo.at/files/SystemProperty.java
javac SystemProperty.java
java SystemProperty
</code></pre>
<p><em>(I know this isn't a real question but rather a crowd sourcing thing. I hope nobody minds)</em></p>
http://stackoverflow.com/questions/1803271/why-does-java-string-have-a-copy-constructor1Why does Java string have a copy constructor? [closed]ripper2342009-11-26T11:57:53Z2009-11-26T12:07:10Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/390703/what-is-the-purpose-of-the-expression-new-string-in-java">What is the purpose of the expression “new String(…)” in Java?</a> </p>
</blockquote>
<p>It's immutable, why would you need to invoke <a href="http://java.sun.com/j2se/1.3/docs/api/java/lang/String.html#String%28java.lang.String%29" rel="nofollow"><code>String.String(String str)</code></a> ?</p>
http://stackoverflow.com/questions/1800203/how-to-split-a-tables-data-into-two-sets-based-on-a-column-value-with-hibnernate0How to split a table's data into two sets based on a column value with Hibnernate mappings?David Scannell2009-11-25T21:51:28Z2009-11-26T11:37:57Z
<p>Suppose there are three tables:</p>
<pre><code>Table A (ID, NAME)
Table B (ID, NAME)
Table A-B (A_ID, B_ID, Boolean_Property)
</code></pre>
<p>and Table A and B are modeled by classes A and B as follows:</p>
<pre><code>public class A {
private long id;
private String name;
// All the B's that belong to A where the boolean property is True
Set<B> trueBSet;
// All the B's that belong to A where the boolean property is False
Set<B> falseBSet;
}
public class B {
private long id;
private String name;
}
</code></pre>
<p>How would I model this using Hibernate? I would like to be able to do the following, but it appears that discriminator column values don't exist for set attributes:</p>
<pre><code><class name="A" table="A">
<id name="id" column="ID">
<generator class="native" />
</id>
<property name="name" column="NAME" />
<set name="trueB" table="A-B">
<key column="A_ID"/>
<many-to-many column="B_ID" class="B"/>
<discriminator column="Boolean_Property" value="True" />
</set>
<set name="falseB" table="A-B">
<key column="A_ID"/>
<many-to-many column="B_ID" class="B"/>
<discriminator column="Boolean_Property" value="False" />
</set>
</class>
</code></pre>
http://stackoverflow.com/questions/1803164/rotate-shape-java2d-without-losing-its-origin1rotate shape java2d without losing it's originsoField2009-11-26T11:33:33Z2009-11-26T12:37:43Z
<pre><code>protected void paintComponent(Graphics g) {
Graphics2D gr = (Graphics2D) g.create();
// draw Original image
super.paintComponent(gr);
// draw 45 degree rotated instance
int aci=-45;
gr.transform(AffineTransform.getRotateInstance(Math.toRadians(aci)));
super.paintComponent(gr);
//translate rotated instance from origin to +10 on y axes
gr.translate(0,10);
super.paintComponent(gr);
}
</code></pre>
<p>But what if I want to draw the rotated shape at its original image origin.</p>
<p>I mean I want to rotate shape its origin without sliding</p>
http://stackoverflow.com/questions/390703/what-is-the-purpose-of-the-expression-new-string-in-java6What is the purpose of the expression "new String(...)" in Java?Uri2008-12-24T03:57:38Z2009-11-26T12:09:30Z
<p>While looking at online code samples, I have sometimes come across an assignment of a String constant to a String object via the use of the new operator.</p>
<p>For example:</p>
<pre><code>String s;
...
s = new String("Hello World");
</code></pre>
<p>This, of course, compared to</p>
<pre><code>s = "Hello World";
</code></pre>
<p>I'm not familiar with this syntax and have no idea what the purpose or effect would be.
Since String constants typically get stored in the constant pool and then in whatever representation the JVM has for dealing with String constants, would anything even be allocated on the heap?</p>
http://stackoverflow.com/questions/1802585/is-there-a-way-to-embed-flv-files-in-java-forms1is there a way to embed flv files in java forms?fealin2009-11-26T09:30:35Z2009-11-26T11:39:17Z
<p>I want to play some flash videos in my desktop application are there any tools (library,jar file, class... etc) to embed flvs in any java forms?</p>