User jjnguy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T03:04:13Zhttp://stackoverflow.com/feeds/user/2598http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/45075/java-flash-a-window-to-grab-users-attention1Java: Flash a window to grab user's attentionjjnguy2008-09-05T01:29:03Z2009-12-08T00:02:14Z
<p>Is there a better way to flash a window in Java than this:</p>
<pre><code>public static void flashWindow(JFrame frame) throws InterruptedException {
int sleepTime = 50;
frame.setVisible(false);
Thread.sleep(sleepTime);
frame.setVisible(true);
Thread.sleep(sleepTime);
frame.setVisible(false);
Thread.sleep(sleepTime);
frame.setVisible(true);
Thread.sleep(sleepTime);
frame.setVisible(false);
Thread.sleep(sleepTime);
frame.setVisible(true);
}
</code></pre>
<p>I know that this code is scary...But it works alright. (I should implement a loop...)</p>
http://stackoverflow.com/questions/977740/swing-cant-get-jbutton-to-update-repaint-not-working/977772#9777728Answer by jjnguy for Swing: Can't get JButton to update - repaint() not workingjjnguy2009-06-10T19:46:40Z2009-12-04T17:36:20Z<p>The problem here is that your long running task is blocking the thread that would normally paint the GUI.</p>
<p>The usual way around this is to throw the longer running task off into another thread.</p>
<p>This can be done fairly easily using a <a href="http://java.sun.com/javase/6/docs/api/javax/swing/SwingWorker.html" rel="nofollow"><code>SwingWorker</code></a>.</p>
<p><a href="http://stackoverflow.com/questions/940913/how-to-prevent-swing-gui-locking-up-during-a-background-task/940950#940950">This question</a> may provide some helpful information as well.</p>
http://stackoverflow.com/questions/1827964/using-multiple-platforms-in-a-single-project/1827978#18279785Answer by jjnguy for Using multiple platforms in a single projectjjnguy2009-12-01T18:29:00Z2009-12-01T18:38:06Z<p><strong>Advantages:</strong></p>
<p>Some technologies are good for some things and bad for others. Using multiple technologies allows you to play to the strengths of multiple technologies.</p>
<p><strong>Disadvantages:</strong></p>
<p>Complexity. Combining multiple systems can cause a large blow-up in complexity. (This will generally out weigh the benefits)</p>
http://stackoverflow.com/questions/238920/quick-question-java-system-clock/238943#2389439Answer by jjnguy for Quick question: Java system clockjjnguy2008-10-27T02:28:21Z2009-11-23T20:37:13Z<p>This is some sample code. </p>
<pre><code>long startTime = System.currentTimeMillis();
// Run some code;
long stopTime = System.currentTimeMilis();
System.out.println("Elapsed time was " + (stopTime - startTime) + " miliseconds.");
</code></pre>
http://stackoverflow.com/questions/1740437/object-is-same-but-the-output-is-different-please-help/1740447#17404472Answer by jjnguy for Object is same but the output is different ? please help jjnguy2009-11-16T06:37:09Z2009-11-16T06:37:09Z<p>By using <code>==</code>, you are checking to see if the two <em>references</em> to the <code>Strings</code> are the same.</p>
<p>What you want to do is check to make sure that the two <em>objects</em> are equal. </p>
<p>Do it like this:</p>
<pre><code>if(s1.equals(s4)){
System.out.println("s1 and s4 are same.");
} else {
System.out.println("s1 and s4 are not same.");
}
</code></pre>
<p><em>Just because two <code>Object</code>s have the same hashcode, doesn't mean they are the same object.</em></p>
http://stackoverflow.com/questions/1721351/how-can-i-measure-the-execution-time-of-a-for-loop/1721363#17213630Answer by jjnguy for How can I measure the execution time of a for loop?jjnguy2009-11-12T10:40:29Z2009-11-12T10:40:29Z<p>In Java:</p>
<pre><code>long startTime = System.currentTimeMillis();
//Loop code
long endTime = System.currentTimeMillis();
System.out.println("The code took " + ((endTime - startTime) / 1000.0) + " seconds to execute.";
</code></pre>
<p>C and C++:</p>
<pre><code>long startTime = time();
//Loop code
long endTime = time();
printf("The code took %d seconds to execute.", endTime - startTime);
</code></pre>
http://stackoverflow.com/questions/1720049/print-number-in-words/1720260#17202602Answer by jjnguy for Print number in wordsjjnguy2009-11-12T06:16:12Z2009-11-12T10:37:43Z<p>Here is the code in Java:</p>
<pre><code>private static String[] DIGIT_WORDS = {
"zero", "one", "two", "three", "four",
"five", "six", "seven", "eight", "nine" };
private static String[] TENS_WORDS = {
"ten", "twenty", "thirty", "forty", "fifty",
"sixty", "seventy", "eighty", "ninety" };
private static String[] TEENS_WORDS = {
"ten", "eleven", "twelve", "thirteen", "fourteen",
"fifteen", "sixteen", "seventeen", "eighteen", "nineteen" };
private static String getHundredWords(int num) {
if (num > 999 || num < 0)
throw new IllegalArgumentException(
"Cannot get hundred word of a number not in the range 0-999");
if (num == 0) return "zero";
String ret = "";
if (num > 99) {
ret += DIGIT_WORDS[num / 100] + " hundred ";
num %= 100;
}
if (num < 20 && num > 9) {
ret += TEENS_WORDS[num % 10];
} else if (num < 10 && num > 0) {
ret += DIGIT_WORDS[num];
} else if (num != 0) {
ret += TENS_WORDS[num / 10 - 1];
if (num % 10 != 0) {
ret += " " + DIGIT_WORDS[num % 10];
}}
return ret;
}
</code></pre>
http://stackoverflow.com/questions/1720350/how-to-pass-an-object-to-a-class-so-that-when-the-object-updates-outside-the-clas/1720374#17203742Answer by jjnguy for How to pass an object to a class so that when the object updates outside the class, it outdates in it too? (Java)jjnguy2009-11-12T06:51:36Z2009-11-12T06:56:55Z<p>If <code>Bar</code> is not a primitive type, then any changes made to <code>Bar</code> outside of your class should also affect the <code>Bar</code> within your class.</p>
<p>If you are trying to change <code>Bar</code> by reassigning another object to the variable, then changes will not be reflected within your class. (I have a feeling this may be the case in your code)</p>
<p>However, if <code>Bar</code> is a primitive type (int, double, char, etc...), then you cannot make changes to it in the way you are doing it right now.</p>
<p><strong>Solution!</strong></p>
<p>In this line of code of yours:</p>
<pre><code>currentPlayer = player2;
</code></pre>
<p>You expect changes to be reflected in you class. They will not. You should add a <code>changeCurrentPlayer(Player p)</code> method and reassign the current player within your class.</p>
<p>The implementation of the method may look something like:</p>
<pre><code>public void changeCurrentPlayer(Player newPlayer){
this.player = newPlayer;
}
</code></pre>
http://stackoverflow.com/questions/1720191/java-util-regex-importance-of-pattern-compile/1720215#17202155Answer by jjnguy for java.util.regex - importance of Pattern.compile()?jjnguy2009-11-12T06:01:24Z2009-11-12T06:01:24Z<p>When you compile the <code>Pattern</code> Java does some computation to make finding matches in <code>String</code>s faster. (Builds an in-memory representation of the regex)</p>
<p>If you are going to reuse the <code>Pattern</code> multiple times you would see a vast performance increase over creating a new <code>Pattern</code> every time.</p>
<p>In the case of only using the Pattern once, the compiling step just seems like an extra line of code, but, in fact, it can be very helpful in the general case.</p>
http://stackoverflow.com/questions/1718957/when-returning-a-pointer-what-to-return-if-its-not-found-c/1718964#17189640Answer by jjnguy for When returning a pointer, what to return if it's not found? C++jjnguy2009-11-12T00:05:33Z2009-11-12T00:05:33Z<p>That's what I would do.</p>
http://stackoverflow.com/questions/1717601/extracting-two-numbers-from-a-string/1717634#17176347Answer by jjnguy for Extracting two numbers from a stringjjnguy2009-11-11T19:52:35Z2009-11-11T21:41:44Z<p>Your pattern should look more like:</p>
<pre><code>Pattern stringWith2Numbers = Pattern.compile("\\D*(\\d+)\\D+(\\d+)\\D*");
</code></pre>
<p>You need to accept <code>\\d+</code> because it can be one or more digits.</p>
http://stackoverflow.com/questions/1717422/character-enconding-in-my-java-classes-in-eclipse-is-messed-up-how-to-fix-it/1717443#17174430Answer by jjnguy for Character Enconding in my java classes in Eclipse is messed up. How to fix it?jjnguy2009-11-11T19:19:43Z2009-11-11T19:19:43Z<p>You should look in the menu:</p>
<pre><code>Edit : Set Encoding... : Other : (probably UTF-8)
</code></pre>
<p>That may fix it.</p>
<p><em>(This is eclipse 3.4.1)</em></p>
http://stackoverflow.com/questions/1705645/java-int-division-confusing-me4Java int division confusing me.jjnguy2009-11-10T04:36:38Z2009-11-10T15:02:53Z
<p>I am doing very simple int division and I am getting odd results.</p>
<p>This code prints <code>2</code> as expected:</p>
<pre><code>public static void main(String[] args) {
int i = 200;
int hundNum = i / 100;
System.out.println(hundNum);
}
</code></pre>
<p>This code prints <code>1</code> as <strong>not</strong> expected:</p>
<pre><code>public static void main(String[] args) {
int i = 0200;
int hundNum = i / 100;
System.out.println(hundNum);
}
</code></pre>
<p>What is going on here?</p>
<p><em>(Windows XP Pro, Java 1.6 running in Eclipse 3.4.1)</em></p>
http://stackoverflow.com/questions/791301/fixing-flowlayout-in-java/791309#7913092Answer by jjnguy for Fixing flowlayout in Javajjnguy2009-04-26T18:14:59Z2009-11-10T03:17:01Z<p>In order to stop a <code>JFrame</code> or <code>JDialog</code> all you need to do is call the method <code>setResizable(false)</code> on your frame or dialog.</p>
<p>You can do this in your constructor like:</p>
<pre><code>public YourWindowNAme(){
// stuff
setResizable(false);
// more stuff
}
</code></pre>
<p>or it can be called externaly like:</p>
<pre><code>instanceOfYourWindow.setResizable(false);
</code></pre>
<p><a href="http://java.sun.com/javase/6/docs/api/java/awt/Frame.html#setResizable%28boolean%29" rel="nofollow">Here</a> is the API for the method.</p>
http://stackoverflow.com/questions/1703103/what-will-happen-in-java-when-i-use-a-method-of-the-super-class-which-has-not-bee/1703117#17031171Answer by jjnguy for What will happen in Java when I use a method of the super class which has not been written?jjnguy2009-11-09T19:14:53Z2009-11-09T19:14:53Z<p>There will always be an implementation in the super class.</p>
<p><code>JPanel</code> implements <code>paintComponent()</code>. So, you don't need to worry about it.</p>
http://stackoverflow.com/questions/1685552/simple-java-map-puzzle/1685645#16856452Answer by jjnguy for Simple Java Map puzzlejjnguy2009-11-06T05:41:34Z2009-11-06T07:28:16Z<pre><code>public static <K, V> boolean containsEntry(Map<K, V> map, K key, V value) {
returns map.containsKey(key) && isEqual(map.get(key), value);
}
private static boolean isEqual(Object a, Object b) {
return a == null ? a == b : a.equals(b);
}
</code></pre>
<p><strong><a href="http://stackoverflow.com/questions/1685552/simple-java-map-puzzle/1685576#1685576">Copied from deleted post.</a></strong></p>
http://stackoverflow.com/questions/1675631/how-do-i-iterate-and-perform-some-arbitrary-operation-on-each-item/1675648#16756489Answer by jjnguy for How do I iterate and perform some arbitrary operation on each item?jjnguy2009-11-04T18:11:07Z2009-11-04T18:17:36Z<p>In Java, it is impossible to directly pass functions in as parameters. Instead you need to set up an interface with one method like so:</p>
<pre><code>interface Operate {
public void operate(Object o);
}
</code></pre>
<p>Then, you need to implement the interface for each different operation you would like to perform on the <code>Object</code>.</p>
<p>An example implementation.</p>
<pre><code>class Print implements Operate {
public void operate(Object o){
System.out.println(o.toString());
}
}
</code></pre>
<p>Implementation in your code:</p>
<pre><code>iterate(Operate o){
while(this.hasnext()){
o.operate(this.next());
}
}
</code></pre>
http://stackoverflow.com/questions/1675351/typedef-struct-vs-struct-definitions/1675385#16753852Answer by jjnguy for typedef struct vs struct definitionsjjnguy2009-11-04T17:26:47Z2009-11-04T17:26:47Z<p>The difference comes in when you use the <code>struct</code>.</p>
<p>The first way you have to do:</p>
<pre><code>struct myStruct aName;
</code></pre>
<p>The second way allows you to remove the keyword <code>struct</code>.</p>
<pre><code>myStruct aName;
</code></pre>
http://stackoverflow.com/questions/181408/best-way-to-write-bytes-in-the-middle-of-a-file-in-java0Best Way to Write Bytes in the Middle of a File in Javajjnguy2008-10-08T05:00:13Z2009-11-04T16:05:30Z
<p>What is the best way to write bytes in the middle of a file using Java?</p>
http://stackoverflow.com/questions/1076473/how-to-generate-a-jlist-with-alternating-colors/1076565#10765653Answer by jjnguy for How to generate a Jlist with alternating colorsjjnguy2009-07-02T20:36:29Z2009-11-04T03:09:05Z<p>To customize the look of a <code>JList</code> cells you need to write your own implementation of a <a href="http://java.sun.com/javase/6/docs/api/javax/swing/ListCellRenderer.html" rel="nofollow"><code>ListCellRenderer</code></a>.</p>
<p>A sample implementation of the <code>class</code> may look like this: (rough sketch, not tested)</p>
<pre><code>public class MyListCellThing extends JLabel implements ListCellRenderer {
public MyListCellThing() {
setOpaque(true);
}
public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
// Assumes the stuff in the list has a pretty toString
setText(value.toString());
// based on the index you set the color. This produces the every other effect.
if (index % 2 == 0) setBackground(Color.RED);
else setBackground(Color.BLUE);
return this;
}
}
</code></pre>
<p>To use this renderer, in your <code>JList</code>'s constructor put this code:</p>
<pre><code>setCellRenderer(new MyListCellThing());
</code></pre>
<p>To change the behavior of the cell based on selected and has focus, use the provided boolean values.</p>
http://stackoverflow.com/questions/1662686/images-will-not-work-in-a-jar-file/1662706#16627063Answer by jjnguy for Images will not work in a .jar filejjnguy2009-11-02T17:52:29Z2009-11-02T17:52:29Z<p>I asked the same question a while back. You should find your answers <a href="http://stackoverflow.com/questions/31127/java-swing-displaying-images-from-within-a-jar">here</a>.</p>
http://stackoverflow.com/questions/1660034/replace-last-string/1660047#16600472Answer by jjnguy for Replace last stringjjnguy2009-11-02T08:38:20Z2009-11-02T10:02:33Z<p>The following code should replace the last occurance of a <code>','</code> with a <code>')'</code>.</p>
<pre><code>StringBuilder b = new StringBuilder(yourString);
b.replace(yourString.lastIndexOf(","), yourString.lastIndexOf(",") + 1, ")" );
yourString = b.toString();
</code></pre>
<p><strong>Note</strong> This will throw Exceptions if the <code>String</code> doesn't contain a <code>','</code>.</p>
http://stackoverflow.com/questions/1659986/java-parameterized-runnable/1660000#16600001Answer by jjnguy for Java: Parameterized Runnablejjnguy2009-11-02T08:16:30Z2009-11-02T08:16:30Z<p>Generally if you wanna pass a parameter into the <code>run()</code> method you will subclass <code>Runnable</code> with a constructor that takes a parameter.</p>
<p>For example, You wanna do this:</p>
<pre><code>// code
Runnable r = new YourRunnable();
r.run(someParam);
//more code
</code></pre>
<p>You need to do this:</p>
<pre><code>// code
Runnable r = new YourRunnable(someParam);
r.run();
//more code
</code></pre>
<p>You will implement <code>YourRunnable</code> similar to below:</p>
<pre><code>public class YourRunnable implements Runnable {
Some param;
public YourRunnable(Some param){
this.param = param;
}
public void run(){
// do something with param
}
}
</code></pre>
http://stackoverflow.com/questions/1650505/what-is-the-inclusive-range-of-float-and-double-in-java/1650523#16505234Answer by jjnguy for What is the inclusive range of float and double in Java?jjnguy2009-10-30T15:33:15Z2009-10-30T15:47:54Z<p>Java's <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Double.html" rel="nofollow"><code>Double</code></a> class has members containing the Min and Max value for the type. </p>
<pre><code>2^-1074 <= x <= (2-2^-52)·2^1023 // where x is the double.
</code></pre>
<p>Check out the <code>Min_VALUE</code> and <code>MAX_VALUE</code> static final members of <code>Double</code>.</p>
<p>(some)People will suggest against using floating point types for things where accuracy and precision are critical because rounding errors can throw off calculations by measurable (small) amounts.</p>
http://stackoverflow.com/questions/185747/how-can-i-turn-an-int-into-three-bytes-in-java1How can I turn an int into three bytes in Java?jjnguy2008-10-09T02:45:40Z2009-10-30T09:13:18Z
<p>I am trying to convert an <code>int</code> into three <code>bytes</code> representing that <code>int</code> (big endian).</p>
<p>I'm sure it has something to do with bit-wise and and bit shifting. But I have no idea how to go about doing it.</p>
<p>For example:</p>
<pre><code>int myInt;
// some code
byte b1, b2 , b3; // b1 is most significant, then b2 then b3.
</code></pre>
<p>*Note, I am aware that an int is 4 bytes and the three bytes have a chance of over/underflowing.</p>
http://stackoverflow.com/questions/1641915/java-inner-class-direclty-implemented-with-parameter-constructor/1641931#16419314Answer by jjnguy for Java Inner-Class direclty implemented with Parameter Constructor?jjnguy2009-10-29T06:27:38Z2009-10-29T07:46:07Z<p>You can do something similar:</p>
<pre><code>final Locale locale;
Runnable r = new Runnable() {
public void run() {
// have direct access to variable 'locale'
}
};
</code></pre>
<p>The important thing to note is that the <code>Locale</code> you pass in must be <code>final</code> in order for you to be able to do this.</p>
<p>You have to initialize <code>locale</code> somehow for this to compile.</p>
http://stackoverflow.com/questions/1610757/pass-array-to-method-java/1610763#16107633Answer by jjnguy for pass array to method Javajjnguy2009-10-23T00:17:34Z2009-10-23T00:17:34Z<p>Simply remove the brackets from your original code.</p>
<pre><code>PrintA(arryw);
private void PassArray(){
String[] arrayw = new String[4];
//populate array
PrintA(arrayw);
}
private void PrintA(String[] a){
//do whatever with array here
}
</code></pre>
<p>That is all.</p>
http://stackoverflow.com/questions/98220/what-is-your-favorite-hot-key-in-eclipse/98355#983557Answer by jjnguy for What is your favorite hot-key in Eclipse?jjnguy2008-09-19T00:32:54Z2009-10-15T18:11:23Z<p><strong>ctrl + space</strong>: auto complete. Completes everything, including the kitchen sink.</p>
<p>The best there ever was!</p>
http://stackoverflow.com/questions/1573417/video-game-bookings-datastore/1573437#15734376Answer by jjnguy for Video game bookings datastorejjnguy2009-10-15T16:15:42Z2009-10-15T16:15:42Z<p>Usually, for small school projects, I invent my own flat file format.</p>
<p>Usually it is a simple CSV-like file, with some key-value pairs of some sort.</p>
<p>Depending on the type of information you need to save XML may be the way to go.</p>
<p>Also, if the information only needs to be saved for a short period of time (One run of the application), and amount of data being saved is relatively small, simply keeping all of it in memory will most certainly make the program much faster, and usually easier to write.</p>
http://stackoverflow.com/questions/1570416/when-to-use-wrapper-class-and-primitive-type/1570432#15704321Answer by jjnguy for When to use wrapper class and primitive typejjnguy2009-10-15T05:21:35Z2009-10-15T05:21:35Z<p><strong>I would only use the wrapper types if you have to.</strong></p>
<p>In using them you don't gain much, besides the fact that they are <code>Objects</code>.</p>
<p>And, you lose overhead in memory usage and time spent boxing/unboxing.</p>
http://stackoverflow.com/questions/110870/how-do-i-break-lines-in-pythonComment by jjnguy on How do I break lines in python?jjnguy2009-12-08T18:12:28Z2009-12-08T18:12:28ZFor discussion on this see: <a href="http://meta.stackoverflow.com/questions/32311/do-not-delete-duplicates" rel="nofollow" title="do not delete duplicates">meta.stackoverflow.com/questions/32311/…</a>http://stackoverflow.com/questions/1856711/how-can-we-make-a-movable-sentenceComment by jjnguy on How can we make a movable sentence?jjnguy2009-12-06T21:42:57Z2009-12-06T21:42:57ZYou are not very clear. Could we please have more detail?http://stackoverflow.com/questions/110870/how-do-i-break-lines-in-pythonComment by jjnguy on How do I break lines in python?jjnguy2009-12-04T19:25:42Z2009-12-04T19:25:42ZPlease don't delete this duplicate. It has a very different title than the other which is helpful in searching.http://stackoverflow.com/questions/1740475/which-is-more-efficientComment by jjnguy on Which is more efficient?jjnguy2009-11-16T06:58:32Z2009-11-16T06:58:32Z<code>'.'</code> is faster.http://stackoverflow.com/questions/1740437/object-is-same-but-the-output-is-different-please-help/1740447#1740447Comment by jjnguy on Object is same but the output is different ? please help jjnguy2009-11-16T06:40:13Z2009-11-16T06:40:13ZMeh, who needs 'em <code>;)</code>http://stackoverflow.com/questions/1726082/display-true-size-x-yComment by jjnguy on display true size @ x/yjjnguy2009-11-12T23:29:25Z2009-11-12T23:29:25ZPlease clarify your question.http://stackoverflow.com/questions/1720049/print-number-in-words/1720260#1720260Comment by jjnguy on Print number in wordsjjnguy2009-11-12T10:50:28Z2009-11-12T10:50:28ZAlso, thanks for cleaning the code up pax.http://stackoverflow.com/questions/1720049/print-number-in-words/1720260#1720260Comment by jjnguy on Print number in wordsjjnguy2009-11-12T10:48:54Z2009-11-12T10:48:54ZI submit the code as a working example. I hope it is not copied directly into a homework assignment.http://stackoverflow.com/questions/1721127/what-would-be-a-good-general-programming-techniques-book-to-advance-the-skills-ofComment by jjnguy on What would be a good general programming techniques book to advance the skills of a casual coder?jjnguy2009-11-12T09:54:23Z2009-11-12T09:54:23Z<a href="http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read" rel="nofollow" title="what is the single most influential book every programmer should read">stackoverflow.com/questions/1711/…</a>http://stackoverflow.com/questions/1720732/basil-plant-keeps-dying/1720742#1720742Comment by jjnguy on Basil plant keeps dyingjjnguy2009-11-12T09:14:34Z2009-11-12T09:14:34ZFrom what I read, keep it warm.http://stackoverflow.com/questions/424952/are-single-threaded-applications-a-dead-technology/424980#424980Comment by jjnguy on Are single-threaded applications a dead technology?jjnguy2009-11-12T09:10:10Z2009-11-12T09:10:10ZSo close to guru badge!! 3 more votes guys, please!http://stackoverflow.com/questions/1720732/basil-plant-keeps-dyingComment by jjnguy on Basil plant keeps dyingjjnguy2009-11-12T08:35:36Z2009-11-12T08:35:36ZWhat I find odd is that it isn't the only question tagged <code>physical-plant</code>http://stackoverflow.com/questions/1720732/basil-plant-keeps-dyingComment by jjnguy on Basil plant keeps dyingjjnguy2009-11-12T08:34:41Z2009-11-12T08:34:41ZBy the asker...http://stackoverflow.com/questions/1720732/basil-plant-keeps-dying/1720742#1720742Comment by jjnguy on Basil plant keeps dyingjjnguy2009-11-12T08:30:10Z2009-11-12T08:30:10ZI wonder if I would have gotten up-votes if this weren't CW...http://stackoverflow.com/questions/1720191/java-util-regex-importance-of-pattern-compile/1720215#1720215Comment by jjnguy on java.util.regex - importance of Pattern.compile()?jjnguy2009-11-12T08:19:29Z2009-11-12T08:19:29ZHa, I know. It was a joke.