| Thread | Last Post | Replies |
|
| I have doubt | 16 Aug 2007 05:21 GMT | 18 |
int x=2; int y; y=x++*++x; For this output is 8
|
| JSpinner return more than one value after single pressed | 16 Aug 2007 02:28 GMT | 8 |
I made the JSpinner: SpinnerModel model = new SpinnerNumberModel(10, 0, 100, 0.1); JSpinner spinner = new JSpinner(model); and listener method for it:
|
| JVM and C#. | 15 Aug 2007 22:11 GMT | 3 |
i am looking JVM writing in C# (C# with Micro Framework), maybe open source project or somethink. I will be writing software for i.MXL processor, there is supported C#, ok maybe C# is similar to Java, but I think is only similar.
|
| HashMap and Array issue | 15 Aug 2007 21:38 GMT | 1 |
I have this JSP where I have alot of fields with conditions. I would like to make it more efficient and use a for loop. Here is an example (showing 2 fields for example only): <%@ page language="java" import="java.util.*" %>
|
| Style: order of fields, params and methods | 15 Aug 2007 20:11 GMT | 6 |
When programming I keep switching the order of declared fields, method params (especially for constructors) and sometimes methods themselves in the class. -> Is there a specific order recommended? <-
|
| List of Interfaced-Objects not being set at serialized | 15 Aug 2007 20:09 GMT | 5 |
I can't seem to get my head around this one. For reasons of having my application in a cluster/failover setup, I want to be able to store any data that is in session, and have it transferred to the other server in case the first goes down...
|
| use of JSplitPane. | 15 Aug 2007 19:19 GMT | 5 |
I would like some code examples or good help to learn about JSplitPane component, please. Thanks :)
|
| JVM install for Verizon Treo 700w | 15 Aug 2007 18:59 GMT | 1 |
I need to install a JVM on my Palm Treo 700W through Verizon. We have an app we would like to use that requires this and I would like to start "playing" with smart phone application development. Any suggestions on how to do this?
|
| jsp - Convert < to < | 15 Aug 2007 18:54 GMT | 2 |
I'm using java, struts and jsp. On one of my forms I display the website of a company with: <td class="stockinfo"> <bean:write name="stockInformationForm" property="fundValue(website).value"/> </
|
| XSLT/XML Transformation using Java Translets | 15 Aug 2007 18:38 GMT | 2 |
Translets "are precompiled XSL documents that are optimized and converted into simple Java classes. When you compile your application Java files, you compile your XSL files into Java class files. During runtime, you can load translets like any regular Java class and
|
| Need help linking & packages | 15 Aug 2007 18:17 GMT | 3 |
If I try to access another jar files default package I have no problem. When I try to access anythig else i.e. package com.mine.thing, I always get the not found message. What special thing do I need to do to make it work?
|
| return value in Eclipse debugger | 15 Aug 2007 14:51 GMT | 7 |
When using the Eclipse debugger, is there any way to see the value that was just returned (or is about to be returned) from a method?
|
| Parallel processing using Executor? | 15 Aug 2007 11:37 GMT | 8 |
I have a method, e.g. foo(int i), which take an integer i and do some heavy processing now, i want to find the summation of foo() of i = 1..10000, I want to take the advantage of speedup by multithreads, then I use executors to
|
| doModal | 15 Aug 2007 11:16 GMT | 2 |
How can I open a JFrame as a modal dialog box ? Thanks :)
|
| Status bar | 15 Aug 2007 10:58 GMT | 2 |
How can I add on a JFrame a status bar line (line appear on the bottom left<->right of the frame). Thanks :)
|