| Thread | Last Post | Replies |
|
| JNLP Redirect output | 09 Mar 2006 18:24 GMT | 3 |
Is it possible to redirect output from an application downloaded with JNLP (Default output is java console) to a file specified in JNLP file?
|
| map algorithm question | 09 Mar 2006 18:04 GMT | 7 |
I am working on an application which draws maps on a screen. This is done with using sets of x,y coordinates which are made into polygons and then drawn in a paintComponent. The user now wants to add elevation (a "z" component). The question at hand is how to quickly index into a ...
|
| programming with sound | 09 Mar 2006 17:58 GMT | 2 |
I am looking for some material on programming with sound. Specifically, I want to be able to compare different sounds. I want to start with developing something like a guitar tuner. So I need to compare 2 pitches. I looked at the API for java sound, and I don't think that
|
| Really basic data entry question [Beginner] | 09 Mar 2006 17:44 GMT | 16 |
I have a simple data script that looks like this: Box of Hammer(s) #
|
| C++ and Java in a large application | 09 Mar 2006 17:23 GMT | 13 |
I have a large application environment built up in Java many java classes, but now a have get code in C++ and wonder how a can get Java and C++ to work together, can anyone give me some suggestion. Regards
|
| Entity Bean -- Few questions | 09 Mar 2006 17:17 GMT | 5 |
I have some questions on the entity beans, these have been bugging me for a quite time. So just thought of getting them straight. 1) The primary key object thats gets generated after the create/finder methods from the EJBHome interface, how is that related with EJBObject?
|
| how to add api to java | 09 Mar 2006 15:53 GMT | 1 |
I am new to java programming . I want to use mjsip API in java. Just wanted to know how to add this API to java library and which files are to be added. Thanks in advance
|
| Blueprints/Patterns for managing configuration in large app? | 09 Mar 2006 15:28 GMT | 1 |
The scenario is you have a large set of application configuration settings comming from: ldap, property files etc. The problem is many sections of your application depend on many different configuration settings. I am bored of seeing a big fat and
|
| LS textparagraph problem | 09 Mar 2006 15:04 GMT | 1 |
I want to do some "find-and-replace" in a RTField using Lotusscript. The RTF contains some <SHIFT><RETURN> in the text. This is done for better display on the web. (<SHIFT><RETURN> produces html <BR> tag, while normal <RETURN> produces <P></P> sequence)
|
| running different plugins within a java application in different JVMs [urgent need of help] | 09 Mar 2006 13:34 GMT | 3 |
I am developing an application that supports loading plugins. It is using the JPF framwork. The problem that I am having is that I want to start each of the plugins within the application in different java versions (start a JVM within another JVM). Currently, the plugins are
|
| Java 5, Generic, Map and wildcards | 09 Mar 2006 13:03 GMT | 1 |
I've got a weird problem with generics and maps. I have the 2 following lines : Collection<? extends ParametresGeneraux> l = new TreeSet<ParametresGlobaux>(); Map<String,Collection<? extends ParametresGeneraux> > m = new TreeMap<String, TreeSet<ParametresGlobaux>>();
|
| Servlet and database on different machines - how to do it | 09 Mar 2006 11:00 GMT | 2 |
I have an applet - servlet - database system which works fine when I use it on JBuilder. But when I put it onto Tomcat to run separately from JBuilder I get the "Driver's SQLAllocHandle on SQL_HANDLE_DBC failed" error message when trying to create statement to Lotus Notes
|
| JSpltPane - detecting divider movement issued by the user? | 09 Mar 2006 10:36 GMT | 2 |
I'd like to know if the divider line was moved by the user. Installing a PropertyChangeListener on JSplitPane.DIVIDER_LOCATION_PROPERTY does not solve the problem because this event is also fired when the user resizes the container so that the divider would be outside the ...
|
| Must the View of Struts be a JSP/HTML? | 09 Mar 2006 10:25 GMT | 1 |
Can it be a servlet? Thanks
|
| Using reflection to build a class? | 09 Mar 2006 08:59 GMT | 4 |
I was idly wondering if it was possible to use Reflection APIs to sort of make a class from scratch by mixing and matching methods. Kind of like the weirdo JavaScript: MyObject o = new MyObject();
|