User Peter - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T02:47:05Z http://stackoverflow.com/feeds/user/26483 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1746813/provide-additional-behavior-when-editing-a-cell-in-jtable/1747161#1747161 1 Answer by Peter for Provide additional behavior when editing a cell in JTable Peter 2009-11-17T07:25:54Z 2009-11-17T07:25:54Z <p>i achieved that type of behaviour by overriding stopCellEditing ( i use a custom implementation of AbstractCellEditor )</p> <pre><code>public boolean stopCellEditing() { String s = (String) getCellEditorValue(); if ( ! valueValidator.isValid(s) ) { editorComponent.setBorder(new LineBorder(Color.red)); Toolkit.getDefaultToolkit().beep(); return false; } } else { ........ </code></pre> http://stackoverflow.com/questions/1742426/validating-input-typepassword-created-in-php/1742463#1742463 4 Answer by Peter for validating input type="password" created in php? Peter 2009-11-16T14:21:51Z 2009-11-16T14:21:51Z <p>you really really should not do that, putting it in the hidden input field makes it freely readable for everyone that can open the page, even if your session would time out the password would still be retreivable in the page's source. scenario: user presses logout, next user comes along, presses back, view source and tada password for grabs</p> http://stackoverflow.com/questions/1665406/how-to-assign-a-javascript-variable-to-java/1665762#1665762 0 Answer by Peter for How to assign a JavaScript variable to Java Peter 2009-11-03T07:25:13Z 2009-11-03T07:25:13Z <p>The typical most simple way is to use hidden input fields and have your JavaScript fill those input fields with the values you need. When your form gets submitted the hidden input fields will be accessibel in your Java</p> http://stackoverflow.com/questions/1660663/hi-i-have-a-field-called-decision-in-my-child-jsp-how-can-i-get-that-value-to-par/1660799#1660799 1 Answer by Peter for hi i have a field called DECISION in my child jsp how can i get that value to parent jsp Peter 2009-11-02T11:43:27Z 2009-11-02T11:43:27Z <p>you cannot</p> <p>JSP is run server side, you dont have a Javascript document on your server</p> <p>If you want to have jsp 'talk' to each other you can use session and request objects</p> <p>But once all 3 jsp are send to the browser and rendered as HTMl you can use any JavaScript you see fit to achieve what you want</p> http://stackoverflow.com/questions/1659628/multithreading-in-jdbc-connectivity/1660350#1660350 2 Answer by Peter for Multithreading in JDBC connectivity Peter 2009-11-02T09:59:47Z 2009-11-02T09:59:47Z <p>Your webserver is inheritly multithreaded, that saves you from implementing you own threads to handle the uploads. Do however make sure that multiple requests dont use same resources (dont write all uploaded file in the same tmp file,....)</p> <p>To avoid problems saving the data to your db, use a Connection Pool.</p> <p>So yes you need threads but if your design is good then all the threading will be handled by your frameworks</p> http://stackoverflow.com/questions/1643015/in-java-what-is-the-best-way-of-continuing-to-call-a-function-until-no-exception/1643093#1643093 0 Answer by Peter for In Java, what is the best way of continuing to call a function until no exception is thrown? Peter 2009-10-29T11:31:01Z 2009-10-29T11:31:01Z <p>Never use Exceptions to handle logic in your code.</p> <p>as suggested first check why you sometimes get the execption</p> http://stackoverflow.com/questions/1642159/whats-the-most-elegant-way-to-concatenate-a-list-of-values-with-delimiter-in-jav/1642193#1642193 0 Answer by Peter for What's the most elegant way to concatenate a list of values with delimiter in Java? Peter 2009-10-29T08:00:43Z 2009-10-29T08:00:43Z <pre><code>for (int i = 0; i &lt; list.length-1; i++) { str = str + list[i]; str = str + ","; } str = str + list[list.length-1] </code></pre> http://stackoverflow.com/questions/1642002/java-keystroke-catchining-directional-keys/1642014#1642014 0 Answer by Peter for Java Keystroke catchining directional keys Peter 2009-10-29T06:51:48Z 2009-10-29T06:51:48Z <pre><code>KeyStroke.getKeyStroke("UP") </code></pre> <p>and you can specify the ctrl and shift versions with</p> <pre><code>KeyStroke.getKeyStroke("control UP") KeyStroke.getKeyStroke("shift UP" </code></pre> http://stackoverflow.com/questions/1634815/mouse-movement-optimizations/1636175#1636175 0 Answer by Peter for Mouse movement optimizations Peter 2009-10-28T09:48:23Z 2009-10-28T09:48:23Z <p>There is nothing wrong with a MouseMotionListener When you read about the overhead it was probably one specific exmaple</p> <p>Anything you can do in any programming language can be done bad or wrong.</p> <p>If you pay attention to what you do in your listener all should be fine</p> http://stackoverflow.com/questions/1599547/how-to-validate-sql-query-syntax/1599799#1599799 1 Answer by Peter for How to validate sql query syntax? Peter 2009-10-21T09:53:53Z 2009-10-21T09:53:53Z <p>dont think there is any (easy) way to validate sql</p> <p>Sql syntax is complex and allows for alot of different ways to enter a statement.</p> <p>Think you best shot would be to just execute the sql statent and if you have a SQl exception see if its a bad syntax thats causing it.</p> <p>you can prepend some sql to avoid from actually executing the query </p> <p>in sybase it would be SET NOEXEC ON</p> http://stackoverflow.com/questions/1496364/converting-binary-to-decimal-java/1496431#1496431 1 Answer by Peter for Converting binary to decimal JAVA Peter 2009-09-30T06:38:56Z 2009-09-30T06:38:56Z <p>you can do it the manual way, start from the left, if its a 1 add 1, then multiply by 2, keep going until String is done</p> <pre><code>public static long toDecimal(String binary) { long decimal=0L; for (int i = 0, n = binary.length(); i &lt; n; i++) { if ( binary.charAt(i) == '1' ) decimal++; if ( i != n-1 ) decimal*=2L; } return decimal; } </code></pre> http://stackoverflow.com/questions/1485367/draw-a-triangle-using-mouse-drag-how-can-i-move-the-previous-drawn-triangle-usin/1485579#1485579 1 Answer by Peter for Draw a triangle using mouse drag (how can I move the previous drawn triangle using mouse drag) Peter 2009-09-28T05:43:15Z 2009-09-28T05:43:15Z <p>when you start to drag you have to detect if your current mouse location is on one of the existing Polygons, also mark the starting location</p> <p>When it is you dont add a new polygon, but you add the amount moved to the different points of the existing polygon and repaint</p> http://stackoverflow.com/questions/229388/working-without-stored-procedures-or-triggers/229409#229409 12 Answer by Peter for Working without stored procedures or triggers Peter 2008-10-23T11:36:26Z 2009-09-14T20:03:49Z <blockquote> <p>Could we consider that having none or few stored procedures / triggers in a database is a good indication of its normalization level and/or its code maintenance cost?</p> </blockquote> <p>No you cannot. </p> <p>Normalization and stored procedures are completely separate from each other. </p> <p>My view on SP's is a layer of abstraction between the database and the people using it.</p> <p>Forcing people to use the SP instead of direct CRUD operations will make it easier to change the design of the tables without breaking them.</p> http://stackoverflow.com/questions/1421488/java-decompiler-written-in-the-united-states/1421740#1421740 0 Answer by Peter for Java decompiler written in the United States Peter 2009-09-14T14:01:30Z 2009-09-14T14:01:30Z <p>mmmh pretty ironic, you cant use a decompiler because the decompiler isent made in the US but you can decompile code nevertheless ?</p> <p>If you need to know what a class does then ask the people that created it for the source</p> <p>If they refuse to give the source then i dont think its legal to decompile it anyway</p> http://stackoverflow.com/questions/1332582/how-do-i-get-a-java-program-i-installed-running/1332607#1332607 4 Answer by Peter for How do I get a Java program I installed running? Peter 2009-08-26T06:01:23Z 2009-08-26T06:01:23Z <p>from the website you linked:</p> <p>How to participate (it's easy!) If you plan to participate, you should join the Mario Competition Google Group. <strong>All technical</strong> and organizational questions should be posted to this group, where they will be answered by the organizers and stored in a searchable achive.</p> <p>But first you will have to develop your controller, using your method of choice and the Java software package. <strong>First of all, look at the getting started page</strong>; more technical information coming soon.</p> <p>From the getting started page</p> <pre><code>java ch.idsia.scenarios.Play </code></pre> <p>In other words: first start reading on the website then come back here</p> http://stackoverflow.com/questions/1304490/how-to-manage-consecutive-column-values-in-table-rows/1304582#1304582 7 Answer by Peter for How to manage consecutive column values in table rows Peter 2009-08-20T07:42:59Z 2009-08-20T07:42:59Z <p>Why make it complicated ?</p> <p>Just insert all reservations as they are entered and insert a timestamp of when they resevered a spot.</p> <p>Then in you query just use the timestamp to sort them.</p> <p>There is offcourse the chance that there are people that reserved a spot at the very same millisecond then just use a random method to assign order. </p> http://stackoverflow.com/questions/1291948/adding-an-icon-to-jtable-by-overriding-defaulttablecellrenderer/1291981#1291981 1 Answer by Peter for Adding an Icon to JTable by overriding DefaultTableCellRenderer Peter 2009-08-18T05:34:48Z 2009-08-18T06:03:48Z <p>For better performance reasons JTable reuses the same label for each cell it renders. This means you need to set both text and icon each time you change it.</p> <p>The same goes for fonts, backgroundcolors and the like </p> <pre><code> if(icon == null){ label.setText(status); label.setIcon(null); }else{ label.setText(""); label.setIcon(icon); } </code></pre> <p>should do the trick, </p> http://stackoverflow.com/questions/1291527/manipulating-fields-in-the-jtable-java/1291956#1291956 0 Answer by Peter for Manipulating fields in the jTable Java Peter 2009-08-18T05:24:56Z 2009-08-18T05:24:56Z <p>The way i would do it is to override </p> <pre><code>public void setValueAt(Object aValue, int rowIndex, int columnIndex); </code></pre> <p>from your TableModel. The setValue method get called by the JTable after the user has editted a value</p> <p>In your overriden method you then can set the value in the other tablemodel</p> http://stackoverflow.com/questions/1287720/help-in-alpha-beta-pruning-and-negamax/1287824#1287824 0 Answer by Peter for Help in alpha beta pruning and negamax Peter 2009-08-17T12:57:42Z 2009-08-17T13:11:14Z <p>entire discussion on exaclty the same problem</p> <p><a href="http://www.coderanch.com/t/457050/Java-General/java/Alpha-beta-pruning-with-negamax" rel="nofollow">http://www.coderanch.com/t/457050/Java-General/java/Alpha-beta-pruning-with-negamax</a></p> <p>might find inspiration there, or not seeing as its probably you that started the other thread too.</p> <p>But that aside i suggest the following: When something is not working seperate your code is small sections</p> <p>Test each in itself, and that means the leftover method is the one thats failing.</p> <p>Write a specific testcase for that method, add alot of System.outs and follow the outpu until you see where its not the value you expected That should have narrowed the problem more then enough to spot the mistake.</p> http://stackoverflow.com/questions/1287128/selectively-running-a-war-in-tomcat-web-apps/1287248#1287248 1 Answer by Peter for Selectively running a war in Tomcat Web apps. Peter 2009-08-17T10:33:48Z 2009-08-17T10:33:48Z <p>If you just mistyped your question:</p> <p>Nice article about different ways of seting up authentication in a webapp <a href="http://www.javaworld.com/javaworld/jw-04-2000/jw-0428-websecurity.html" rel="nofollow">http://www.javaworld.com/javaworld/jw-04-2000/jw-0428-websecurity.html</a></p> http://stackoverflow.com/questions/1282276/jtable-grid-lines-for-selected-rows/1286877#1286877 0 Answer by Peter for jTable grid lines for selected rows Peter 2009-08-17T08:56:14Z 2009-08-17T08:56:14Z <p>Did you implement your own cellrenderer ?</p> <p>If you did make sure you still set a border in your </p> <pre><code> public Component getTableCellRendererComponent(...) </code></pre> <p>method</p> http://stackoverflow.com/questions/1276824/jdbc-how-can-i-query-by-time-in-oracle/1276959#1276959 -2 Answer by Peter for JDBC: How can I query by time in Oracle? Peter 2009-08-14T09:42:20Z 2009-08-14T09:42:20Z <p>all your question about jdb:</p> <p><a href="http://java.sun.com/docs/books/tutorial/jdbc/index.html" rel="nofollow">http://java.sun.com/docs/books/tutorial/jdbc/index.html</a></p> <p>If you want real help you will also have to specify what you consider 'Fails' no return values ? Sql Exception ,....</p> http://stackoverflow.com/questions/1268201/making-a-jtable-cell-editable-but-not-by-double-clicking/1270561#1270561 1 Answer by Peter for Making a JTable cell editable - but *not* by double clicking. Peter 2009-08-13T07:35:02Z 2009-08-13T07:35:02Z <p>You will have to make your own cellEditor and ovveride</p> <pre><code>public boolean isCellEditable( EventObject e ) </code></pre> <p>You can distinguish between single and double click with the clickCount on the eventObject</p> <p>If its a single Click and its on a selected cell you can return true otherwise return false;</p> <p>retrieve row and column with</p> <pre><code>int row = ( (JTable) e.getSource() ).rowAtPoint(e.getPoint()); int column = ( (JTable) e.getSource() ).columnAtPoint(e.getPoint()); </code></pre> <p>to enable F2 you can add custom inputMap en actionMap entries</p> <pre><code>similar too table.getInputMap().put(KeyStroke.getKeyStroke("DOWN"), "doMyArrowDown"); table.getTable().getActionMap().put("doMyArrowDown", new ArrowDownAction()); </code></pre> <p>and from your action you can then fire the cellediting yourself</p> <pre><code>table.editCellAt(row, column ); </code></pre> http://stackoverflow.com/questions/1270067/how-to-handle-multiple-languages-in-java/1270325#1270325 1 Answer by Peter for How to handle multiple languages in java? Peter 2009-08-13T06:20:06Z 2009-08-13T06:20:06Z <p>there is an entire tutorial on <a href="http://java.sun.com/docs/books/tutorial/i18n/index.html" rel="nofollow">http://java.sun.com/docs/books/tutorial/i18n/index.html</a> </p> <p>This specifies and explains about anything you need to know.</p> http://stackoverflow.com/questions/1259080/can-i-get-the-project-build-path-programicaly/1259128#1259128 0 Answer by Peter for Can i get the project build path programicaly? Peter 2009-08-11T08:50:26Z 2009-08-11T09:28:35Z <p>The project default path is just a common used standard, most IDE's default to it but there are no Java API methods you can use.</p> http://stackoverflow.com/questions/1258441/why-does-a-new-simpledateformat-object-contain-calendar-with-the-wrong-year/1258568#1258568 0 Answer by Peter for Why does a new SimpleDateFormat object contain calendar with the wrong year? Peter 2009-08-11T05:27:50Z 2009-08-11T05:27:50Z <pre><code>System.out.println(new SimpleDateFormat().getCalendar()); System.out.println(new GregorianCalendar()); </code></pre> <p>comparing above code is comparing apples and pears</p> <p>The first provides you a tool to parse String into Dates and vice versa The second is a DateUtility that allows you to manipulate Dates</p> <p>There is not really a reason why the should provide similar output.</p> <p>Compare it with the following</p> <pre><code>System.out.println(new String() ); System.out.println(new Date().toString() ); </code></pre> <p>both lines will output a String but logicly you wouldnt expect the same result</p> http://stackoverflow.com/questions/1253650/property-file-string-length-limitation-java/1253664#1253664 7 Answer by Peter for Property file string length limitation (JAVA) Peter 2009-08-10T08:15:40Z 2009-08-10T08:15:40Z <p>There is no such limit </p> <p>Since you mention "..." i have this question: are you displaying the value in a JLabel ? The "..." is a typical way of a JLabel rendering a String thats too long.</p> <p>There also is an easier way to save Properties</p> <pre><code>File propertiesfile=new File("fileName.props"); propstosave.store(new FileOutputStream(propertiesfile), "groupnames"); </code></pre> http://stackoverflow.com/questions/1238763/preventing-sql-injection-without-prepared-statements-jdbc/1238986#1238986 0 Answer by Peter for Preventing SQL injection without prepared statements (JDBC) Peter 2009-08-06T13:47:03Z 2009-08-06T13:47:03Z <p>Prepared Statements dont care about client or server side</p> <p>Use them and drop any sql string concatenation, there is not a single reason to not use Prepared Statements</p> http://stackoverflow.com/questions/1231691/servlet-control-multiple-request/1231704#1231704 2 Answer by Peter for Servlet control multiple request. Peter 2009-08-05T07:40:02Z 2009-08-05T07:40:02Z <p>the error is relevant, having multiple calls to a servlet acting different then one means you have thread safety issues probably due to the way you implemented the servlet</p> http://stackoverflow.com/questions/1231228/jsp-error-when-using-if-else-with-html/1231395#1231395 0 Answer by Peter for jsp error when using if-else with html Peter 2009-08-05T05:47:27Z 2009-08-05T05:47:27Z <p>in jstl it would be something similar to</p> <pre><code>&lt;c:choose&gt; &lt;c:when test="${client is null}"&gt; NO client &lt;/c:when&gt; &lt;c:otherwise&gt; &lt;A href="&lt;c:url value="page.jsp" &gt; &lt;c:param name="aid" value="${client.ID}" /&gt; &lt;/c:url&gt;" &gt; and his name is &lt;c:out value="${client.name}"/&gt; &lt;/c:otherwise&gt; </code></pre> <p></p> http://stackoverflow.com/questions/1665406/how-to-assign-a-javascript-variable-to-java/1665762#1665762 Comment by Peter on How to assign a JavaScript variable to Java Peter 2009-11-03T14:00:01Z 2009-11-03T14:00:01Z The hidden input field is only hidden in your html, once the request goes to your weberver you can treat and retrieve it like any other parameter in a form, aka you retriever it from your request http://stackoverflow.com/questions/1642159/whats-the-most-elegant-way-to-concatenate-a-list-of-values-with-delimiter-in-jav/1642193#1642193 Comment by Peter on What's the most elegant way to concatenate a list of values with delimiter in Java? Peter 2009-10-29T09:23:49Z 2009-10-29T09:23:49Z clearly not did that http://stackoverflow.com/questions/1642159/whats-the-most-elegant-way-to-concatenate-a-list-of-values-with-delimiter-in-jav/1642193#1642193 Comment by Peter on What's the most elegant way to concatenate a list of values with delimiter in Java? Peter 2009-10-29T08:38:18Z 2009-10-29T08:38:18Z i know string concatenation isent fast thats not the point and yes its less readable just pointing out other options to do what the OP asked http://stackoverflow.com/questions/1641899/why-it-is-necessary-to-inherit-the-module-name Comment by Peter on Why it is necessary to inherit the module name ? Peter 2009-10-29T06:50:25Z 2009-10-29T06:50:25Z ok thats some information http://stackoverflow.com/questions/1641899/why-it-is-necessary-to-inherit-the-module-name Comment by Peter on Why it is necessary to inherit the module name ? Peter 2009-10-29T06:32:24Z 2009-10-29T06:32:24Z i hope you do but seriuosly, can you rephrase your question to add more information you are really not giving enough information http://stackoverflow.com/questions/1518431/jcalendar-implementation-in-netbeans Comment by Peter on jcalendar implementation in netbeans Peter 2009-10-05T06:33:47Z 2009-10-05T06:33:47Z check the API for those components to known what methods to call http://stackoverflow.com/questions/1485367/draw-a-triangle-using-mouse-drag-how-can-i-move-the-previous-drawn-triangle-usin/1485579#1485579 Comment by Peter on Draw a triangle using mouse drag (how can I move the previous drawn triangle using mouse drag) Peter 2009-09-29T05:32:46Z 2009-09-29T05:32:46Z no its the different between the starting point of the drag and the end point of the drag say you drag from 5,10 to 15,25 you have moved 10 and 15 so you add 10 to all x's of the triangle en 15 to all y's http://stackoverflow.com/questions/1310854/java-not-giving-error Comment by Peter on Java not giving Error! Peter 2009-08-21T09:24:55Z 2009-08-21T09:24:55Z lovely: the answer is in the question // TODO: handle exception http://stackoverflow.com/questions/1304490/how-to-manage-consecutive-column-values-in-table-rows/1304582#1304582 Comment by Peter on How to manage consecutive column values in table rows Peter 2009-08-20T10:17:38Z 2009-08-20T10:17:38Z if you have to avoid changes there is the option to put a unique constraint on the index_nr column, that way the DB itself will avoid the duplicates, the downside is the fact you will have to catch the sqlexception it will throw and make sure you try again with a new and higher Index_nr http://stackoverflow.com/questions/1299144/memory-usage-large-arrays-puzzle-in-java Comment by Peter on Memory usage large arrays puzzle in java Peter 2009-08-19T12:48:21Z 2009-08-19T12:48:21Z if its java it should be r.totalMemory() to compile http://stackoverflow.com/questions/1291948/adding-an-icon-to-jtable-by-overriding-defaulttablecellrenderer/1291981#1291981 Comment by Peter on Adding an Icon to JTable by overriding DefaultTableCellRenderer Peter 2009-08-18T06:05:06Z 2009-08-18T06:05:06Z yup my adivce did not help because i forgot about the column == MyTableModel.IMAGE_COLUMN test http://stackoverflow.com/questions/1287128/selectively-running-a-war-in-tomcat-web-apps Comment by Peter on Selectively running a war in Tomcat Web apps. Peter 2009-08-17T10:32:25Z 2009-08-17T10:32:25Z a war doesnt run in a browser it runs in your webcontainer, http://stackoverflow.com/questions/1276914/open-source-remote-desktop-webapplication/1276935#1276935 Comment by Peter on open source remote desktop webapplication? Peter 2009-08-14T09:38:52Z 2009-08-14T09:38:52Z why does it have to be a webapp ? http://stackoverflow.com/questions/1269443/critique-my-server-design-please Comment by Peter on Critique my server design please. Peter 2009-08-13T06:23:22Z 2009-08-13T06:23:22Z Not a question that has a real answer http://stackoverflow.com/questions/1264314/proxy-server-in-java Comment by Peter on proxy server in java Peter 2009-08-12T06:16:30Z 2009-08-12T06:16:30Z please fix formatting