User Peter - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T02:47:05Zhttp://stackoverflow.com/feeds/user/26483http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1746813/provide-additional-behavior-when-editing-a-cell-in-jtable/1747161#17471611Answer by Peter for Provide additional behavior when editing a cell in JTablePeter2009-11-17T07:25:54Z2009-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#17424634Answer by Peter for validating input type="password" created in php?Peter2009-11-16T14:21:51Z2009-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#16657620Answer by Peter for How to assign a JavaScript variable to JavaPeter2009-11-03T07:25:13Z2009-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#16607991Answer by Peter for hi i have a field called DECISION in my child jsp how can i get that value to parent jspPeter2009-11-02T11:43:27Z2009-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#16603502Answer by Peter for Multithreading in JDBC connectivityPeter2009-11-02T09:59:47Z2009-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#16430930Answer by Peter for In Java, what is the best way of continuing to call a function until no exception is thrown?Peter2009-10-29T11:31:01Z2009-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#16421930Answer by Peter for What's the most elegant way to concatenate a list of values with delimiter in Java?Peter2009-10-29T08:00:43Z2009-10-29T08:00:43Z<pre><code>for (int i = 0; i < 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#16420140Answer by Peter for Java Keystroke catchining directional keysPeter2009-10-29T06:51:48Z2009-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#16361750Answer by Peter for Mouse movement optimizationsPeter2009-10-28T09:48:23Z2009-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#15997991Answer by Peter for How to validate sql query syntax?Peter2009-10-21T09:53:53Z2009-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#14964311Answer by Peter for Converting binary to decimal JAVAPeter2009-09-30T06:38:56Z2009-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 < 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#14855791Answer by Peter for Draw a triangle using mouse drag (how can I move the previous drawn triangle using mouse drag)Peter2009-09-28T05:43:15Z2009-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#22940912Answer by Peter for Working without stored procedures or triggersPeter2008-10-23T11:36:26Z2009-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#14217400Answer by Peter for Java decompiler written in the United StatesPeter2009-09-14T14:01:30Z2009-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#13326074Answer by Peter for How do I get a Java program I installed running?Peter2009-08-26T06:01:23Z2009-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#13045827Answer by Peter for How to manage consecutive column values in table rowsPeter2009-08-20T07:42:59Z2009-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#12919811Answer by Peter for Adding an Icon to JTable by overriding DefaultTableCellRendererPeter2009-08-18T05:34:48Z2009-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#12919560Answer by Peter for Manipulating fields in the jTable JavaPeter2009-08-18T05:24:56Z2009-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#12878240Answer by Peter for Help in alpha beta pruning and negamaxPeter2009-08-17T12:57:42Z2009-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#12872481Answer by Peter for Selectively running a war in Tomcat Web apps.Peter2009-08-17T10:33:48Z2009-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#12868770Answer by Peter for jTable grid lines for selected rowsPeter2009-08-17T08:56:14Z2009-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-2Answer by Peter for JDBC: How can I query by time in Oracle?Peter2009-08-14T09:42:20Z2009-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#12705611Answer by Peter for Making a JTable cell editable - but *not* by double clicking.Peter2009-08-13T07:35:02Z2009-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#12703251Answer by Peter for How to handle multiple languages in java?Peter2009-08-13T06:20:06Z2009-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#12591280Answer by Peter for Can i get the project build path programicaly?Peter2009-08-11T08:50:26Z2009-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#12585680Answer by Peter for Why does a new SimpleDateFormat object contain calendar with the wrong year?Peter2009-08-11T05:27:50Z2009-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#12536647Answer by Peter for Property file string length limitation (JAVA)Peter2009-08-10T08:15:40Z2009-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#12389860Answer by Peter for Preventing SQL injection without prepared statements (JDBC)Peter2009-08-06T13:47:03Z2009-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#12317042Answer by Peter for Servlet control multiple request.Peter2009-08-05T07:40:02Z2009-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#12313950Answer by Peter for jsp error when using if-else with htmlPeter2009-08-05T05:47:27Z2009-08-05T05:47:27Z<p>in jstl it would be something similar to</p>
<pre><code><c:choose>
<c:when test="${client is null}">
NO client
</c:when>
<c:otherwise>
<A href="<c:url value="page.jsp" >
<c:param name="aid" value="${client.ID}" />
</c:url>"
> and his name is <c:out value="${client.name}"/>
</c:otherwise>
</code></pre>
<p></p>
http://stackoverflow.com/questions/1665406/how-to-assign-a-javascript-variable-to-java/1665762#1665762Comment by Peter on How to assign a JavaScript variable to JavaPeter2009-11-03T14:00:01Z2009-11-03T14:00:01ZThe 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#1642193Comment by Peter on What's the most elegant way to concatenate a list of values with delimiter in Java?Peter2009-10-29T09:23:49Z2009-10-29T09:23:49Zclearly not did that http://stackoverflow.com/questions/1642159/whats-the-most-elegant-way-to-concatenate-a-list-of-values-with-delimiter-in-jav/1642193#1642193Comment by Peter on What's the most elegant way to concatenate a list of values with delimiter in Java?Peter2009-10-29T08:38:18Z2009-10-29T08:38:18Zi know string concatenation isent fast thats not the point and yes its less readable just pointing out other options to do what the OP askedhttp://stackoverflow.com/questions/1641899/why-it-is-necessary-to-inherit-the-module-nameComment by Peter on Why it is necessary to inherit the module name ?Peter2009-10-29T06:50:25Z2009-10-29T06:50:25Zok thats some information http://stackoverflow.com/questions/1641899/why-it-is-necessary-to-inherit-the-module-nameComment by Peter on Why it is necessary to inherit the module name ?Peter2009-10-29T06:32:24Z2009-10-29T06:32:24Zi hope you do
but seriuosly, can you rephrase your question to add more information you are really not giving enough informationhttp://stackoverflow.com/questions/1518431/jcalendar-implementation-in-netbeansComment by Peter on jcalendar implementation in netbeansPeter2009-10-05T06:33:47Z2009-10-05T06:33:47Zcheck the API for those components to known what methods to callhttp://stackoverflow.com/questions/1485367/draw-a-triangle-using-mouse-drag-how-can-i-move-the-previous-drawn-triangle-usin/1485579#1485579Comment by Peter on Draw a triangle using mouse drag (how can I move the previous drawn triangle using mouse drag)Peter2009-09-29T05:32:46Z2009-09-29T05:32:46Zno 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-errorComment by Peter on Java not giving Error!Peter2009-08-21T09:24:55Z2009-08-21T09:24:55Zlovely: the answer is in the question // TODO: handle exception
http://stackoverflow.com/questions/1304490/how-to-manage-consecutive-column-values-in-table-rows/1304582#1304582Comment by Peter on How to manage consecutive column values in table rowsPeter2009-08-20T10:17:38Z2009-08-20T10:17:38Zif 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-javaComment by Peter on Memory usage large arrays puzzle in javaPeter2009-08-19T12:48:21Z2009-08-19T12:48:21Zif its java it should be r.totalMemory() to compilehttp://stackoverflow.com/questions/1291948/adding-an-icon-to-jtable-by-overriding-defaulttablecellrenderer/1291981#1291981Comment by Peter on Adding an Icon to JTable by overriding DefaultTableCellRendererPeter2009-08-18T06:05:06Z2009-08-18T06:05:06Zyup 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-appsComment by Peter on Selectively running a war in Tomcat Web apps.Peter2009-08-17T10:32:25Z2009-08-17T10:32:25Za war doesnt run in a browser it runs in your webcontainer,
http://stackoverflow.com/questions/1276914/open-source-remote-desktop-webapplication/1276935#1276935Comment by Peter on open source remote desktop webapplication?Peter2009-08-14T09:38:52Z2009-08-14T09:38:52Zwhy does it have to be a webapp ?http://stackoverflow.com/questions/1269443/critique-my-server-design-pleaseComment by Peter on Critique my server design please.Peter2009-08-13T06:23:22Z2009-08-13T06:23:22ZNot a question that has a real answer http://stackoverflow.com/questions/1264314/proxy-server-in-javaComment by Peter on proxy server in javaPeter2009-08-12T06:16:30Z2009-08-12T06:16:30Zplease fix formatting