active questions tagged java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T17:26:28Z http://stackoverflow.com/feeds/tag/java http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1881536/java-out-of-memory-exception-message-changes-when-trying-to-create-arrays-of-diff 2 Java Out of Memory Exception Message Changes When Trying to Create Arrays of Different Sizes Gordon 2009-12-10T15:00:26Z 2009-12-10T17:26:22Z <p>In the question by DKSRathore <a href="http://stackoverflow.com/questions/1880687/how-to-simulate-the-out-of-memory-requested-array-size-exceeds-vm-limit/1880907">How to simulate the Out Of memory : Requested array size exceeds VM limit</a> some odd behavior was noted when creating an arrays. </p> <p>When creating an array of size Integer.MAX_VALUE an exception with the error <code>java.lang.OutOfMemoryError Requested array size exceeds VM limit</code> was thrown.</p> <p>However when an array was created with a size less than the max but still above the virtual machine memory limit the error message read <code>java.lang.OutOfMemoryError: Java heap space</code>.</p> <p>Testing further I managed to narrow down where the error messages changes.</p> <p><code>long[] l = new long[2147483645];</code> exceptions message reads - Requested array size exceeds VM limit </p> <p><code>long[] l = new long[2147483644];</code> exceptions message reads - Java heap space errors </p> <p>I increased my virtual machine memory and still produced the same result.</p> <p>Has anyone any idea why this happens?</p> <p>Some extra info: Integer.MAX_VALUE = 2147483647.</p> <p>Edit: Here's the code I used to find the value, might be helpful.</p> <pre><code>int max = Integer.MAX_VALUE; boolean done = false; while (!done) { try { max--; // Throws an error long[] l = new long[max]; // Exit if an error is no longer thrown done = true; } catch (OutOfMemoryError e) { if(!e.getMessage().contains("Requested array size exceeds VM limit")){ System.out.println("Message changes at " + max); done = true; } } } </code></pre> http://stackoverflow.com/questions/1817789/java-swing-questions-regarding-gridlayout-and-paintcomponent-methods 1 Java Swing questions regarding GridLayout and paintComponent methods aforloney 2009-11-30T04:03:14Z 2009-12-10T17:25:46Z <p>Within this program, we need to create an 8x8 grid of "LifeCell" widgets. The instructor did not mention that the widgets had to be an object of <code>Shape</code> so I went ahead and used the <code>GridLayout</code> class. The <code>GridLayout</code> class works fine (as well as I know, since there is no visual aid to confirm.) The object of the program is to play the Game of Life where a user can click on one of the LifeCell widgets and toggle between states being 'alive' or 'dead.</p> <p>My question relies heavily on getting the cells to be painted. It could be a problem with my code, but I am not 100% sure. </p> <h3>Program2.java</h3> <pre><code>public class Program2 extends JPanel implements ActionListener { private LifeCell[][] board; // Board of life cells. private JButton next; // Press for next generation. private JFrame frame; // The program frame. public Program2() { // The usual boilerplate constructor that pastes the main // panel into a frame and displays the frame. It should // invoke the "init" method before packing the frame frame = new JFrame("LIFECELL!"); frame.setContentPane(this); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.init(); frame.pack(); frame.setVisible(true); } public void init() { // Create the user interface on the main panel. Construct // the LifeCell widgets, add them to the panel, and store // them in the two-dimensional array "board". Create the // "next" button that will show the next generation. LifeCell[][] board = new LifeCell[8][8]; this.setPreferredSize(new Dimension(600, 600)); this.setBackground(Color.white); this.setLayout(new GridLayout(8, 8)); // here is where I initialize the LifeCell widgets for (int u = 0; u &lt; 8; u++) { for (int r = 0; r &lt; 8; r++) { board[u][r] = new LifeCell(board, u, r); this.add(board[u][r]); this.setVisible(true); } } </code></pre> <h3>LifeCell.java</h3> <pre><code> public class LifeCell extends JPanel implements MouseListener { private LifeCell[][] board; // A reference to the board array. private boolean alive; // Stores the state of the cell. private int row, col; // Position of the cell on the board. private int count; // Stores number of living neighbors. public LifeCell(LifeCell[][] b, int r, int c) { // Initialize the life cell as dead. Store the reference // to the board array and the board position passed as // arguments. Initialize the neighbor count to zero. // Register the cell as listener to its own mouse events. this.board = b; this.row = r; this.col = c; this.alive = false; this.count = 0; addMouseListener(this); } </code></pre> <p>and here is the <code>paintComponent</code> method:</p> <pre><code> public void paintComponent(Graphics gr) { // Paint the cell. The cell must be painted differently // when alive than when dead, so the user can clearly see // the state of the cell. Graphics2D g = (Graphics2D) gr; super.paintComponent(gr); g.setPaint(Color.BLUE); } </code></pre> <p>I do not need the exact solution to fix it, but I am at wits end trying to get it to work. </p> <p>Thanks.</p> <p>EDIT:</p> <p>I added more segment of Program2.java class, I can check back tomorrow I am heading off to bed, I appreciate all the help guys.</p> <p>EDIT #2:</p> <p>My real confusion gets to when I populate my frame with an 8x8 <code>GridLayout</code> each individual "cell" for lack of better words is of type <code>LifeCell</code>. How can I paint each <code>LifeCell</code> different colors? If that makes any sense at all to you guys, I can try to revise it as much as I can. And camickr, I will look at that website, thank you.</p> <p>Assignment can be found <a href="http://www.ric.edu/faculty/emcdowell/cs221/program2.txt" rel="nofollow">here</a> to avoid any and all confusion regarding my question and/or the code snippet.</p> http://stackoverflow.com/questions/1881054/swing-question-jtree-custom-tree-model 2 Swing question / JTree / custom tree model Thomas Arts 2009-12-10T13:42:40Z 2009-12-10T17:24:37Z <p>Hello,</p> <p>I'm having a problem and hope, someone knows what's going wrong and why and is able to give me the explanation of what I'm missing out right now to make that thing work as suggested.</p> <p>I have a JTree which is build upon a custom TreeModel ("WRTreeModel", see below). The data structure this model shall be used for is build of an root object which contains some fields and furthermore a list which is backed by the "ArrayListModel" shown below. The tree looks fine when I build it using the WRTreeModel. I'm able to expand and collapse the nodes which represent the lists and fields contained in the objects. I can expand and collapse these lists and see their contents as well and so on.</p> <p>Now I want to remove a child of one of the lists and - as I already know - do it by removing it from the model calling the remove method of the ArrayListModel. To make the WRTreeModel aware of that remove, the first thing is to call its fireIntervalRemoved method is called, so far so good.</p> <p>In the WRTreeModels inner class ArrayModelListener the intervalRemoved method prepares the call of fireTreeNodesRemoved which then builds a TreeEvent which is forwarded to all registered TreeModelListeners (and therefore the JTree which registers itself automaticall when it's connected to the model).</p> <p>Now I would expect that the tree reflects the change and updates it's internal and visual representation to show the new state. Unfortunately this doesn't seem to work that way. Something happens. But when I click on the node I just have changed some EventHandler-Exceptions are thrown. Obviously something got really confused.</p> <p>I know it's not easy to answer such a question on the fly but I would really appreciate a fast answer. It would also be of help, if someone knew websites explaining the use of custom tree models (not on DefaultMutableTreeNode or any given implementation based class) and how the event handling and updating of the JTree works.</p> <p>With best regards,</p> <p>Thomas Arts</p> <p><hr></p> <pre><code>public class ArrayListModel&lt;E&gt; extends ArrayList&lt;E&gt; implements ListModel { ... public E remove(int index) { fireIntervalRemoved(index, index); E removedElement = super.remove(index); return removedElement; } ... } </code></pre> <p><hr></p> <pre><code>public class WRTreeModel extends LogAndMark implements TreeModel { class ArrayModelListener implements ListDataListener { ... @Override public void intervalRemoved(ListDataEvent e) { int[] indices = new int[e.getIndex1() - e.getIndex0() + 1]; for (int i = e.getIndex0(); i &lt; e.getIndex1(); i++) indices[i - e.getIndex0()] = i; fireTreeNodesRemoved(e.getSource(), getPathToRoot(e.getSource()), indices, ((ArrayListModel&lt;?&gt;)e.getSource()).subList(e.getIndex0(), e.getIndex1()+1).toArray()); } ... } public Object[] getPathToRoot(Object child) { ArrayList&lt;Object&gt; ret = new ArrayList&lt;Object&gt;(); if (child == null) return ret.toArray(); ret.add(root); if (child == root) return ret.toArray(); int childType = 0; if (child instanceof List&lt;?&gt; &amp;&amp; ((List) child).get(0) instanceof Einleitungsstelle) { childType = 1; } if (child instanceof Einleitungsstelle) { childType = 2; } if (child instanceof List&lt;?&gt; &amp;&amp; ((List) child).get(0) instanceof Messstelle) { childType = 3; } if (child instanceof Messstelle) { childType = 4; } if (child instanceof List&lt;?&gt; &amp;&amp; ((List) child).get(0) instanceof Ueberwachungswert) { childType = 5; } if (child instanceof Ueberwachungswert) { childType = 6; } if (child instanceof List&lt;?&gt; &amp;&amp; ((List) child).get(0) instanceof Selbstueberwachungswert) { childType = 7; } if (child instanceof Selbstueberwachungswert) { childType = 8; } switch (childType) { // List of ESTs case 1: { ret.add(child); break; } // EST case 2: { List&lt;Einleitungsstelle&gt; listOfEST = ((Wasserrecht) (root)).getListOfEST(); ret.add(listOfEST); ret.add(child); break; } // List of MSTs case 3: { List&lt;Einleitungsstelle&gt; listOfEST = ((Wasserrecht) (root)).getListOfEST(); ret.add(listOfEST); // Find the EST containing the List of MSTs the child referes to for (Einleitungsstelle einleitungsstelle : listOfEST) { if (child == einleitungsstelle.getListOfMST()) { ret.add(einleitungsstelle); break; } } ret.add(child); break; } // MST case 4: { List&lt;Einleitungsstelle&gt; listOfEST = ((Wasserrecht) (root)).getListOfEST(); ret.add(listOfEST); // Find the EST containing the List of MSTs the child referes to for (Einleitungsstelle einleitungsstelle : listOfEST) { if (child == einleitungsstelle.getListOfMST()) { ret.add(einleitungsstelle.getListOfMST()); break; } } ret.add(child); break; } // List of UEWs case 5: { List&lt;Einleitungsstelle&gt; listOfEST = ((Wasserrecht) (root)).getListOfEST(); ret.add(listOfEST); // Find the EST containing the List of MSTs the child referes to for (Einleitungsstelle einleitungsstelle : listOfEST) { ArrayListModel&lt;Messstelle&gt; listOfMST = einleitungsstelle.getListOfMST(); if (child == listOfMST) { ret.add(listOfMST); for (Messstelle messstelle : listOfMST) { if (child == messstelle.getListOfUEW()) { ret.add(messstelle.getListOfUEW()); break; } } break; } } break; } // UEW case 6: { List&lt;Einleitungsstelle&gt; listOfEST = ((Wasserrecht) (root)).getListOfEST(); ret.add(listOfEST); // Find the EST containing the List of MSTs the child referes to for (Einleitungsstelle einleitungsstelle : listOfEST) { ArrayListModel&lt;Messstelle&gt; listOfMST = einleitungsstelle.getListOfMST(); if (child == listOfMST) { ret.add(listOfMST); for (Messstelle messstelle : listOfMST) { if (child == messstelle.getListOfUEW()) { ret.add(messstelle.getListOfUEW()); break; } } break; } } ret.add(child); break; } // List of SUEWs case 7: { List&lt;Einleitungsstelle&gt; listOfEST = ((Wasserrecht) (root)).getListOfEST(); ret.add(listOfEST); // Find the EST containing the List of MSTs the child referes to for (Einleitungsstelle einleitungsstelle : listOfEST) { ArrayListModel&lt;Messstelle&gt; listOfMST = einleitungsstelle.getListOfMST(); if (child == listOfMST) { ret.add(listOfMST); for (Messstelle messstelle : listOfMST) { if (child == messstelle.getListOfSUEW()) { ret.add(messstelle.getListOfSUEW()); break; } } break; } } break; } // SUEW case 8: { List&lt;Einleitungsstelle&gt; listOfEST = ((Wasserrecht) (root)).getListOfEST(); ret.add(listOfEST); // Find the EST containing the List of MSTs the child referes to for (Einleitungsstelle einleitungsstelle : listOfEST) { ArrayListModel&lt;Messstelle&gt; listOfMST = einleitungsstelle.getListOfMST(); if (child == listOfMST) { ret.add(listOfMST); for (Messstelle messstelle : listOfMST) { if (child == messstelle.getListOfSUEW()) { ret.add(messstelle.getListOfSUEW()); break; } } break; } } ret.add(child); break; } default: ret = null; } return ret.toArray(); } } ... protected void fireTreeNodesRemoved(Object changed, Object path[], int childIndecies[], Object children[]) { TreeModelEvent event = new TreeModelEvent(this, path, childIndecies, children); synchronized (listeners) { for (Enumeration e = listeners.elements(); e.hasMoreElements();) { TreeModelListener tml = (TreeModelListener) e.nextElement(); tml.treeNodesRemoved(event); } } } ... } </code></pre> http://stackoverflow.com/questions/1882584/what-is-a-covariant-return-type 0 What is a covariant return type? Lord Torgamus 2009-12-10T17:23:13Z 2009-12-10T17:24:12Z <p>What is a covariant return type in Java? In object-oriented programming in general?</p> <p>I know, it's a "just Google it"; I did, and found the answer, but I'm asking anyways because of SO's goal to be the #1 Google result for programming questions.</p> http://stackoverflow.com/questions/1875765/how-to-define-persons-names-in-text-java 0 How to define person's names in text (Java) Denis 2009-12-09T18:14:34Z 2009-12-10T17:19:04Z <p>I have some input text, which contains one or more human person names. I do not have any dictionary for these names. Which Java library can help me to define names from my input text? I looked through OpenNLP, but did not find any example or guide or at least description of how it can be applied into my code. (I saw javadoc, but it is pretty poor documentation for such a project).</p> <p>Define = find names from some random text. If input text is "My friend Joe Smith went to the store.", than I want to get "Joe Smith". I think there should be some large enough dictionaries on smart engines, based on smaller dictionaries, that can understand human name.</p> http://stackoverflow.com/questions/1880804/java-time-efficient-sparse-1d-array-double 0 Java time-efficient sparse 1D array (double) Marie 2009-12-10T12:54:29Z 2009-12-10T17:15:57Z <p>Hi,</p> <p>I need an efficient Java structure to manipulate very sparse vectors of doubles: basic read / write operations. I implemented it in a HashMap but the access is too slow. Should I use another data structure? Do you recommend any free library?</p> <p>Looking for some peaceful advice :)</p> <p>Thanks a lot,</p> <p>Marie</p> http://stackoverflow.com/questions/1882487/why-does-repaintlong-repaint-immediately 0 Why does repaint(long) repaint immediately? Gili 2009-12-10T17:12:00Z 2009-12-10T17:15:56Z <p>According to the Javadoc, <a href="http://java.sun.com/javase/6/docs/api/java/awt/Component.html#repaint%28long%29" rel="nofollow">JComponent.repaint(long)</a> is supposed to schedule a repaint() sometime in the future. When I try using it it always triggers an immediate repaint. What am I doing wrong?</p> <pre><code>import java.awt.AlphaComposite; import java.awt.Color; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.Timer; public class Repaint { public static final boolean works = false; private static class CustomComponent extends JPanel { private float alpha = 0; @Override protected void paintComponent(Graphics g) { super.paintComponent(g); Graphics2D g2d = (Graphics2D) g; g2d.setComposite( AlphaComposite.getInstance(AlphaComposite.SRC_OVER, alpha)); g2d.setPaint(Color.BLACK); g2d.fillRect(0, 0, getWidth(), getHeight()); alpha += 0.1; if (alpha &gt; 1) alpha = 1; System.out.println("alpha=" + alpha); if (!works) repaint(1000); } } public static void main(String[] args) { final JFrame frame = new JFrame(); frame.getContentPane().add(new CustomComponent()); frame.setSize(800, 600); frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); frame.setVisible(true); if (works) { new Timer(1000, new ActionListener() { @Override public void actionPerformed(ActionEvent e) { frame.repaint(); } }).start(); } } } </code></pre> http://stackoverflow.com/questions/1882467/using-javascript-apis-in-java 0 Using javascript APIs in Java. stjowa 2009-12-10T17:10:12Z 2009-12-10T17:15:31Z <p>I am writing a standalone application in Java that needs to be able to call custom Javascript APIs? Is there a way to call custom Javascript APIs in Java?</p> http://stackoverflow.com/questions/1882154/model-generation-for-manually-entered-page-in-spring-framework 0 Model generation for manually entered page in Spring framework oo_olo_oo 2009-12-10T16:18:52Z 2009-12-10T17:13:57Z <p>I have to extend some Spring web application, but I'm not very familiar with the framework (however, I have some experience with few other frameworks). I can see that there is "ModelAndView" concept used by the framework. Controller returns both: a model and a view from onSubmit() method. But what to do if a model have to be generated for a page entered manually (user enters the page address to the browser address bar, instead of submitting a form). In such a case there is no onSubmit() call, so a model isn't prepared. </p> <p>I thought of (ab)using formBackingObject() method of BaseFormController class, which prepares "command" object. But I don't know how to refer the object in the jsp code. Any hints would be appreciated. </p> http://stackoverflow.com/questions/1882322/how-do-i-get-maven-2-to-build-2-separate-war-files 0 How do I get Maven 2 to build 2 separate WAR files TiGz 2009-12-10T16:47:22Z 2009-12-10T17:13:20Z <p>when doing a mvn install I want to end up with 2 WAR files in my target dir. One will contain the production web.xml and one will contain the test/uat web.xml.</p> <p>I've tried this:</p> <pre><code>&lt;build&gt; &lt;finalName&gt;cas-server&lt;/finalName&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-war-plugin&lt;/artifactId&gt; &lt;version&gt;2.1-beta-1&lt;/version&gt; &lt;configuration&gt; &lt;webXml&gt;src/main/config/prod/web.xml&lt;/webXml&gt; &lt;warName&gt;cas-prod&lt;/warName&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-war-plugin&lt;/artifactId&gt; &lt;version&gt;2.1-beta-1&lt;/version&gt; &lt;configuration&gt; &lt;webXml&gt;src/main/config/test/web.xml&lt;/webXml&gt; &lt;warName&gt;cas-test&lt;/warName&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; </code></pre> <p>But I only end up with the test WAR.</p> http://stackoverflow.com/questions/1882400/is-there-a-convenient-way-to-use-a-spinner-as-an-editor-in-a-swing-jtable 0 Is there a convenient way to use a spinner as an editor in a Swing JTable? Uri 2009-12-10T16:58:57Z 2009-12-10T17:09:03Z <p>I deal with numeric data that is often edited up or down by 0.01*Value_of_variable, so a spinner looks like a good choice compared to a usual text cell. </p> <p>I've looked at DefaultCellEditor but it will only take text fields, combo boxes or check boxes.</p> <p>Is there a convenient way to use a spinner?</p> http://stackoverflow.com/questions/1882003/what-is-the-use-of-long-reverselong-method 5 what is the use of Long.reverse(long ) method? DKSRathore 2009-12-10T16:00:33Z 2009-12-10T17:06:40Z <p>I found one method in Long class <code>public static long reverse(long i) {..}</code> What is the use of this method?</p> http://stackoverflow.com/questions/1881922/questions-about-javas-string-pool 5 Questions about Java's String pool dmindreader 2009-12-10T15:51:05Z 2009-12-10T17:06:05Z <p>Consider this code:</p> <pre><code>String first = "abc"; String second = new String ("abc"); </code></pre> <p>When using the <strong>new</strong> keyword, Java will create the <code>abc String</code> again right? Will this be stored on the regular heap or the <code>String</code> pool? How many <code>Strings</code> will end in the <code>String</code> pool?</p> http://stackoverflow.com/questions/1878150/strategies-for-deploying-an-exploded-ear 0 Strategies for deploying an exploded ear Yishai 2009-12-10T01:38:03Z 2009-12-10T17:03:13Z <p>I have a build process that creates an ear in a fairly complicated manner (multiple EJB jars, a couple of wars, a couple of sars (which are JBoss specific). The ant process for piecing this together is somewhat complex.</p> <p>What is the best strategy to not recreate the creation logic of the ejb creation in ANT but still be able to deploy exploded to the application server or in an ear for QA and production.</p> <p>Although I'm concerned about JBoss, the question is really relevant to any application server that supports exploded ear deployment, and is really more about ANT, how to avoid two different targets that recreated the logic of creating a zip file vs copying to a directory.</p> http://stackoverflow.com/questions/1124788/java-unresolved-compilation-problem 1 Java: Unresolved compilation problem Frank 2009-07-14T11:25:48Z 2009-12-10T17:02:00Z <p>What are the possible causes of a "java.lang.Error: Unresolved compilation problem"?</p> <p>Additional information: </p> <p>I have seen this after copying a set of updated JAR files from a build on top of the existing JARs and restarting the application. The JARs are built using a Maven build process.</p> <p>I would expect to see LinkageErrors or ClassNotFound errors if interfaces changed. The above error hints at some lower level problem.</p> <p>A clean rebuild and redeployment fixed the problem. Could this error indicate a corrupted JAR?</p> http://stackoverflow.com/questions/1882398/org-apache-axis2-axisfault-unknown-when-calling-web-service-with-java 0 "org.apache.axis2.AxisFault: unknown" when calling web service with Java dax 2009-12-10T16:58:45Z 2009-12-10T16:58:45Z <p>Hi,</p> <p>I'm trying to call a web service with a Java client. The WSDL looks like this: <a href="http://pastebin.com/m13124ba" rel="nofollow">http://pastebin.com/m13124ba</a></p> <p>My client:</p> <p><code> public class Client{ public static void main(java.lang.String args[]){ try{ CompileAndExecuteServiceInterfaceStub stub = new CompileAndExecuteServiceInterfaceStub ("http://192.168.1.3:8080/axis2/services/CompileAndExecuteServiceInterface");</p> <pre><code> Compile comp = new Compile(); comp.setArgs0("Test"); comp.setArgs1("public class Test { public static void main(String[] args) { System.out.println(\"Hello\");}}"); String[] classpath = {}; comp.setArgs2(classpath); stub.compile(comp); } catch(Exception e){ e.printStackTrace(); } } </code></pre> <p>} </code></p> <p>When I run the client now the following error occurs:</p> <blockquote> org.apache.axis2.AxisFault: unknown </blockquote> <blockquote> at org.apache.axis2.util.Utils.getInboundFaultFromMessageContext(Utils.java:517) at org.apache.axis2.description.OutInAxisOperationClient.handleResponse(OutInAxisOperation.java:371) at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:417) at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:229) at org.apache.axis2.client.OperationClient.execute(OperationClient.java:165) at de.dax.compileandexecuteclient.CompileAndExecuteServiceInterfaceStub.compile(CompileAndExecuteServiceInterfaceStub.java:184) at de.dax.compileandexecuteclient.Client.main(Client.java:17)</blockquote> <p>I tried out the business logic of the server on my local machine and there it works. The service creates files and folders. Are web services allowed to do that? I also wrote a simple "Hello World" web service and deployed it to the server. This worked fine.</p> <p>Kind regards,</p> <p>-dax</p> http://stackoverflow.com/questions/654525/implement-wait-between-processes-in-java 2 Implement wait between processes in Java? Amara 2009-03-17T14:40:54Z 2009-12-10T16:31:51Z <p>I would like some help understanding and implementing a 'wait until process complete' between the various processes in my application, which need to proceed in a <em>step-wise fashion</em>. My java file runs a batch file which then runs a script. At the conclusion of this there are series of commands that I need to run (through the command line) in a consecutive manner. I'm using:</p> <pre><code>Runtime.getRuntime().exec("cmd /c start " + command) </code></pre> <p>to run my batch files and commands (not sure if that information is relevant). Right now what is happening is that the second step that needs to occur in my application is executing before the first step (running the batch file which runs a script) has completed. I need the first step to conclude before running the next series of commands. I really hope I'm making sense!</p> http://stackoverflow.com/questions/1882055/java-swing-change-background-color-on-mouse-over 1 Java Swing: change background color on mouse over Miguel Ping 2009-12-10T16:09:23Z 2009-12-10T16:19:41Z <p>Hi,</p> <p>I've implemented a simple mouse listener where the background color changes whenever the mouse enters the component (a JPanel), and it reverts back whenever the mouse leaves. This has some problems:</p> <ul> <li>Sometimes the mouse moves so quick that the <em>mouseExit</em> event is not fired</li> <li>If my component has childs, when the mouse moves to the childs it triggers the <em>mouseExit</em></li> <li>If I move the mouse over to the childs quickly, the <em>mouseEnter</em> event is not fired</li> </ul> <p>I'm guessing this is an easy one for Swing veterans. Any suggestions on how to fix this? I'd love not to use timers and such...</p> http://stackoverflow.com/questions/1879840/how-can-i-get-the-xml-node-type-based-on-schema-definition-in-java 1 How can I get the xml Node type based on schema definition in Java? wilczarz 2009-12-10T09:36:22Z 2009-12-10T16:19:11Z <p>Let's say I have a doc.xml and corresponding doc.xsd. I use xpath to retrieve some nodes, so I get a list of org.w3c.dom.Node. How can I get type of each node from schema, eg. xs:integer, xs:string etc ?</p> <p>Some solution would be to parse schema with xpath query "//NodeName[@type]" using node.getNodeName() as NodeName, but that's not perfect. I can't be sure that schema is elegant - what if NodeName exists in many places in schema and has not been extracted as a separate type?</p> <p>So generally I am looking for a reliable solution to get the node type for ANY valid xml &amp; xsd.</p> http://stackoverflow.com/questions/1882156/using-matrixcursor-and-simplecursoradapter-in-a-listview-with-text-and-images 0 Using MatrixCursor and SimpleCursorAdapter in a ListView with Text and Images Corey D 2009-12-10T16:19:10Z 2009-12-10T16:19:10Z <p>I'm new to Android development and running into an issue with using a MatrixCursor to populate my ListView.</p> <pre><code>private void fillData() { String[] menuCols = new String[] { "icon", "item", "price" }; int[] to = new int[] { R.id.icon, R.id.item, R.id.price }; MatrixCursor menuCursor = new MatrixCursor(menuCols); startManagingCursor(menuCursor); menuCursor.addRow(new Object[] { R.drawable.chicken_sandwich, "Chicken Sandwich", "$3.99" }); SimpleCursorAdapter menuItems = new SimpleCursorAdapter( this, R.layout.menu_row, menuCursor, menuCols, to); setListAdapter(menuItems); } </code></pre> <p>Constructing the SimpleCursorAdapter causes a crash. Even when I tried removing the icon I was still crashing. Here is my menu_row.xml:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android"&gt; &lt;ImageView android:id="@+id/icon" android:layout_width="wrap_content" android:layout_height="wrap_content"&gt; &lt;/ImageView&gt; &lt;TextView android:id="@+id/item" android:layout_width="wrap_content" android:layout_height="wrap_content"&gt; &lt;/TextView&gt; &lt;TextView android:id="@+id/price" android:layout_width="wrap_content" android:layout_height="wrap_content"&gt; &lt;/TextView&gt; &lt;/LinearLayout&gt; </code></pre> http://stackoverflow.com/questions/1876430/how-to-set-a-breakpoint-on-a-default-java-constructor-in-eclipse 2 How to set a breakpoint on a default Java constructor in Eclipse? Greg Mattes 2009-12-09T19:59:04Z 2009-12-10T16:17:45Z <p>In Eclipse, I would like to set a breakpoint on a Java <a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/classes.html#8.8.9" rel="nofollow">default constructor</a>. I can't simply double click to the left of any line of code since default constructors have no source code - they are implicitly generated by the Java compiler.</p> <p>I'd like to be able to set such a breakpoint <strong>without modifying the existing code</strong>.</p> http://stackoverflow.com/questions/1868333/how-can-i-determine-the-type-of-a-generic-field-in-java 5 How can I determine the type of a generic field in Java? Juan Mendes 2009-12-08T17:00:07Z 2009-12-10T16:14:11Z <p>I have been trying to determine the type of a field in a class. I've seen all the introspection methods but haven't quite figured out how to do it. This is going to be used to generate xml/json from a java class. I've looked at a number of the questions here but haven't found exactly what I need.</p> <p>Example:</p> <pre><code>class Person { public final String name; public final List&lt;Person&gt; children; } </code></pre> <p>When I marshall this object, I need to know that the chidren field is a list of objects of type Person, so I can marshall it properly.</p> <p>Thanks</p> http://stackoverflow.com/questions/1882005/jsp-template-implementation-composite-view-pattern 0 JSP template implementation (Composite View Pattern) Tarion 2009-12-10T16:00:57Z 2009-12-10T16:11:55Z <p>What is the best way to implement the Composite View Pattern for a Java website?</p> <p>My idea was to take one jsp and include multiple pages like:</p> <pre><code>&lt;h1&gt;Layout Start&lt;/h1&gt; &lt;% Values values = DataHandler.getValues(request); LayoutHelper layout = values.getLayout(); out.println("Layout.getContent(): " + layout.getContent()); %&gt; &lt;jsp:include page="&lt;%= layout.getContent() %&gt;" flush="false" /&gt; &lt;h1&gt;Layout End&lt;/h1&gt; </code></pre> <p>But then all my small jsp files in the WEB-INF directory are still avalible to the user. How can i denine access to all jsp files but one for the template. And then I need a filter or Servlet to inserter the pathes in the Values object.</p> http://stackoverflow.com/questions/1881924/suppressing-swing-visibility 0 Suppressing Swing Visibility mtc06 2009-12-10T15:51:08Z 2009-12-10T16:05:56Z <p>Hello,</p> <p>I've been given a bunch of messy code and a short time limit (no surprises there) to write some tests for it. I have written tests! They are good tests.</p> <p>Unfortunately, instantiating some of the project's components causes Swing GUI elements to be constructed and set visible too. I don't want this to happen for obvious reasons, so I was wondering if there was a way to suppress the displaying of any Swing-based stuff before I instantiate these objects. Essentially, some kind of master visibility setting, that says "I don't care if anyone calls setVisible on a Swing component, don't show anything."</p> <p>I don't think there is, and I don't think there's a solution other than modifying the project code. Just thought I'd ask.</p> http://stackoverflow.com/questions/1881546/inetaddress-getlocalhost-throws-unknownhostexception 0 InetAddress.getLocalHost() throws UnknownHostException jhwist 2009-12-10T15:02:09Z 2009-12-10T15:57:19Z <p>Hi,<br> I am testing our server-application (written Java) on different operating systems and thought that OpenSolaris (2008.11) would be the least troublesome due to the nice Java integration. Turns out I was wrong, as I end up with a UnknownHostException</p> <pre><code>try { computerName = InetAddress.getLocalHost().getHostName(); if (computerName.indexOf(".") &gt; -1) computerName = computerName.substring(0, computerName.indexOf(".")).toUpperCase(); } catch (UnknownHostException e) { e.printStackTrace(); } </code></pre> <p>The output is:</p> <pre><code>java.net.UnknownHostException: desvearth01: desvearth01 at java.net.InetAddress.getLocalHost(InetAddress.java:1353) </code></pre> <p>However, <code>nslookup desvearth01</code> returns the correct IP address, and <code>nslookup localhost</code> returns <code>127.0.0.1</code> as expected. Also, the same code works perfectly on FreeBSD. Is there anything special to OpenSolaris that I am not aware of?</p> <p>Any hints appreciated, thanks.</p> http://stackoverflow.com/questions/1881714/how-to-start-stop-restart-a-thread-in-java 2 How to start/stop/restart a thread in Java? Shaitan00 2009-12-10T15:24:05Z 2009-12-10T15:50:21Z <p>I am having a real hard time finding a way to start, stop, and restart a thread in Java.</p> <p>Specifically, I have a class Task (currently implements Runnable) in a file Task.java. My main application needs to be able to START this task on a thread, STOP (kill) the thread when it needs to, and sometimes KILL &amp; RESTART the thread ...</p> <p>My first attempt was with ExecutorService but I can't seem to find a way for it restart a task. When I use .shutdownnow() any future call to .execute(..) fails because the ExecutorService is "shutdown"...</p> <p>So, how could I accomplish this? Any help would be greatly appreciated.... Thanks,</p> http://stackoverflow.com/questions/562273/what-output-and-recording-ports-does-the-java-sound-api-find-on-your-computer 1 What output and recording ports does the Java Sound API find on your computer? Dave Carpeneto 2009-02-18T18:26:17Z 2009-12-10T15:45:15Z <p>Hi all - I'm working with the <a href="http://java.sun.com/products/java-media/sound/" rel="nofollow">Java Sound API</a>, and it turns out if I want to adjust recording volumes I need to model the hardware that the OS exposes to Java. Turns out there's a lot of variety in what's presented. </p> <p>Because of this I'm humbly asking that anyone able to help me run the following on their computer and post back the results so that I can get an idea of what's out there. </p> <p>A thanks in advance to anyone that can assist :-)</p> <pre><code>import javax.sound.sampled.*; public class SoundAudit { public static void main(String[] args) { try { System.out.println("OS: "+System.getProperty("os.name")+" "+ System.getProperty("os.version")+"/"+ System.getProperty("os.arch")+"\nJava: "+ System.getProperty("java.version")+" ("+ System.getProperty("java.vendor")+")\n"); for (Mixer.Info thisMixerInfo : AudioSystem.getMixerInfo()) { System.out.println("Mixer: "+thisMixerInfo.getDescription()+ " ["+thisMixerInfo.getName()+"]"); Mixer thisMixer = AudioSystem.getMixer(thisMixerInfo); for (Line.Info thisLineInfo:thisMixer.getSourceLineInfo()) { if (thisLineInfo.getLineClass().getName().equals( "javax.sound.sampled.Port")) { Line thisLine = thisMixer.getLine(thisLineInfo); thisLine.open(); System.out.println(" Source Port: " +thisLineInfo.toString()); for (Control thisControl : thisLine.getControls()) { System.out.println(AnalyzeControl(thisControl));} thisLine.close();}} for (Line.Info thisLineInfo:thisMixer.getTargetLineInfo()) { if (thisLineInfo.getLineClass().getName().equals( "javax.sound.sampled.Port")) { Line thisLine = thisMixer.getLine(thisLineInfo); thisLine.open(); System.out.println(" Target Port: " +thisLineInfo.toString()); for (Control thisControl : thisLine.getControls()) { System.out.println(AnalyzeControl(thisControl));} thisLine.close();}}} } catch (Exception e) {e.printStackTrace();}} public static String AnalyzeControl(Control thisControl) { String type = thisControl.getType().toString(); if (thisControl instanceof BooleanControl) { return " Control: "+type+" (boolean)"; } if (thisControl instanceof CompoundControl) { System.out.println(" Control: "+type+ " (compound - values below)"); String toReturn = ""; for (Control children: ((CompoundControl)thisControl).getMemberControls()) { toReturn+=" "+AnalyzeControl(children)+"\n";} return toReturn.substring(0, toReturn.length()-1);} if (thisControl instanceof EnumControl) { return " Control:"+type+" (enum: "+thisControl.toString()+")";} if (thisControl instanceof FloatControl) { return " Control: "+type+" (float: from "+ ((FloatControl) thisControl).getMinimum()+" to "+ ((FloatControl) thisControl).getMaximum()+")";} return " Control: unknown type";} } </code></pre> <p>All the application does is print out a line about the OS, a line about the JVM, and a few lines about the hardware found that may pertain to recording hardware. For example on my PC at work I get the following:</p> <pre><code>OS: Windows XP 5.1/x86 Java: 1.6.0_07 (Sun Microsystems Inc.) Mixer: Direct Audio Device: DirectSound Playback [Primary Sound Driver] Mixer: Direct Audio Device: DirectSound Playback [SoundMAX HD Audio] Mixer: Direct Audio Device: DirectSound Capture [Primary Sound Capture Driver] Mixer: Direct Audio Device: DirectSound Capture [SoundMAX HD Audio] Mixer: Software mixer and synthesizer [Java Sound Audio Engine] Mixer: Port Mixer [Port SoundMAX HD Audio] Source Port: MICROPHONE source port Control: Microphone (compound - values below) Control: Select (boolean) Control: Microphone Boost (boolean) Control: Front panel microphone (boolean) Control: Volume (float: from 0.0 to 1.0) Source Port: LINE_IN source port Control: Line In (compound - values below) Control: Select (boolean) Control: Volume (float: from 0.0 to 1.0) Control: Balance (float: from -1.0 to 1.0) </code></pre> http://stackoverflow.com/questions/1881264/where-are-the-spring-mvc-validation-error-codes-resolved 1 Where are the Spring MVC validation error codes resolved? James McMahon 2009-12-10T14:16:42Z 2009-12-10T15:42:26Z <p>I am attempting to write <a href="http://static.springsource.org/spring/docs/2.5.6/api/org/springframework/validation/Validator.html" rel="nofollow">validators</a> under the Spring MVC framework, but there is a glaring omission in the documentation. When calling passing an error to the <a href="http://static.springsource.org/spring/docs/2.5.6/api/org/springframework/validation/Errors.html#rejectValue%28java.lang.String,%20java.lang.String%29" rel="nofollow">Errors</a> object most of the methods expect an String parameter named errorCode. These errorCodes, if I understand correctly serve as stand ins for specific error messages. But I can't for the life figure out where these codes are mapped to.</p> <p>Here is an example of what I am referring to from Spring MVC's Javadoc;</p> <pre><code> public class UserLoginValidator implements Validator { private static final int MINIMUM_PASSWORD_LENGTH = 6; public boolean supports(Class clazz) { return UserLogin.class.isAssignableFrom(clazz); } public void validate(Object target, Errors errors) { ValidationUtils.rejectIfEmptyOrWhitespace(errors, "userName", "field.required"); ValidationUtils.rejectIfEmptyOrWhitespace(errors, "password", "field.required"); UserLogin login = (UserLogin) target; if (login.getPassword() != null &amp;&amp; login.getPassword().trim().length() &lt; MINIMUM_PASSWORD_LENGTH) { errors.rejectValue("password", "field.min.length", new Object[]{Integer.valueOf(MINIMUM_PASSWORD_LENGTH)}, "The password must be at least [" + MINIMUM_PASSWORD_LENGTH + "] characters in length."); } } } </code></pre> <p>Can anyone enlighten me?</p> http://stackoverflow.com/questions/1881729/java-sound-api-distinguish-multiple-equal-usb-sound-cards 1 Java Sound API - Distinguish multiple equal USB sound cards Tiago Alves 2009-12-10T15:25:44Z 2009-12-10T15:41:51Z <p>I'm using 4 USB sound cards (ASUS Xonar U1). I want to send to each one of them a different sound (the same text narrated in different languages). For now, what I do to get the sound mixers that I'm interested in, is something like this:</p> <pre><code>Info[] mixerInfo = AudioSystem.getMixerInfo(); int count = 0; for (Info i : mixerInfo) { System.out.println("["+(count++)+"]" + i.getName() + " - " + i.getDescription()+" - "+i.getVendor()); } </code></pre> <p>This gives me something like the following:</p> <pre><code>[5] Device [plughw:1,0] - Direct Audio Device: USB Advanced Audio Device, USB Audio, USB Audio - ALSA (http://www.alsa-project.org) [6] Device_1 [plughw:2,0] - Direct Audio Device: USB Advanced Audio Device, USB Audio, USB Audio - ALSA (http://www.alsa-project.org) [7] Device_2 [plughw:3,0] - Direct Audio Device: USB Advanced Audio Device, USB Audio, USB Audio - ALSA (http://www.alsa-project.org) </code></pre> <p>For now, in my configuration file, I'm associating the sound cards to the Info[] index (the "count" variable). </p> <p>The problem is if I change the USB port to which a sound card is connected. Then the Info[] array has a whole new order and I don't know anymore which sound card should play the language <code>en_US</code> and which <code>pt_PT</code> for instance.</p> <p>Also, the "plughw:1,0" string changes without any noticeable pattern. If I have just one sound card it will always be "plughw:1,0" no matter to which port I connect it to.</p> <p>If the computer is restarted the mixer Info[] also gets reordered sometimes.</p> <p>I've also given a look at jUSB but the Device information for the sound cards is exactly the same for all of them and I wouldn't know how to map the USB information it gives me with the Java Sound API mixer Info.</p> <p>So, does anyone know how to uniquely identify equal sound cards with the Java Sound API?</p> <p>Alternatively, does anyone have another suggestion about which language/library I could use to write an application that outputs different audio files to 4 different USB sound cards in the same machine?</p> http://stackoverflow.com/questions/1878506/best-free-code-review-tool-for-eclipse-java-flex-development 1 Best free Code Review tool for Eclipse/Java/Flex Development Dougnukem 2009-12-10T03:43:13Z 2009-12-10T15:39:16Z <p>I'm using Eclipse and I'm wondering what the best Eclipse/Java/Flexbuilder code review tool is. If it matters we're using SVN as our SCM.</p> <p>Here are the following I've come across:</p> <ul> <li><a href="http://code.google.com/p/jupiter-eclipse-plugin/" rel="nofollow">Jupiter</a> - seems like it's been around for awhile it looks like there is only a single developer on the project and the documentation mentions rather old versions of Eclipse</li> <li><a href="http://www.alphaworks.ibm.com/tech/ccrt" rel="nofollow">IBM's Collaborative Code Review plugin for eclipse</a> - seems like its a proprietary code review tool so not sure it will be supported in the future (or have the ability for a community to assist in development).</li> <li><a href="http://live.eclipse.org/node/543" rel="nofollow">Eclipse COLA real-time shared editing</a> - Not really a code review tool but more a way to view/edit files peer-to-peer style allowing code review like collaboration. Check out this <a href="http://www.vimeo.com/1195398" rel="nofollow">video demonstration of COLA</a>.</li> </ul>