| Thread | Last Post | Replies |
|
| struts action | 02 Jun 2005 16:57 GMT | 5 |
this is part of my struts-config.xml <global-forwards> <forward name="showitem" path="/ShowItem.do"/> </global-forwards>
|
| any libraries available to help with building email messages from a content template? | 02 Jun 2005 16:50 GMT | 4 |
I'm working on an application which has to dispatch emails for a variety of different business use cases . The email message content should really be driven from a template, into which I push the required data. Are there any open source libraries available to help with type of ...
|
| where can I find any decent inteview questions for jcore java and j2ee? | 02 Jun 2005 16:37 GMT | 3 |
|
| Clustering (Data Mining) framework for java | 02 Jun 2005 16:33 GMT | 1 |
does anyone know a data Mining especially clustering framework for java?? (e.g. implemented algorithm like c-means, ROCK, ...) Best regards,
|
| Relocating arrays using System.arraycopy | 02 Jun 2005 15:16 GMT | 6 |
I have an array, eg. int[] x = {1, 2, 3, 4}; I want to relocate the index such that relocate(fromIndex, toIndex) using values relocate(3, 1) will change the array to {1, 4, 2, 3}. The following is a working code:
|
| report generation in java | 02 Jun 2005 14:37 GMT | 3 |
i m using j2ee in my project on windows platform. my backend is MySql. please tell me what should i use to generate the reports. i can't purchase any software. please suggest me any software which is free to use.
|
| URGENT RXTX SERIAL PORT | 02 Jun 2005 14:16 GMT | 11 |
This is my situation : A PC under OS MandrakeLinux 10.1 A machine branched on the serial port I use jdk1.5 and the rxtx API
|
| cannot convert from string to EndUserIdentifier | 02 Jun 2005 13:20 GMT | 1 |
I'm trying to access a remote web service uisng this wsdl http://uddi.bt.com/WSDL/parlayx/thirdpartycallservice/rpc-lit/parlayx_third_part y_calling_service.wsdl When i do wsd2java 4 packages are created One of the files in the package in EndUserIdentifier.java
|
| Reading data from Webserver ports | 02 Jun 2005 12:24 GMT | 1 |
I wanted to know whether it is possible to read data from the http port 7001 ( which the weblogic server uses while the server is on ). I should be able to read all incoming requests to this port. Thanks in advance
|
| Java processes/threads | 02 Jun 2005 08:35 GMT | 1 |
when I run JBoss, all the processes such as Tomcat, SQL server and so on appears as threads of a single process. How does Java manage separation between them (in OS thread the memory is shared between threads)? How are Java threads mapped to OS threads (one Java thread = one OS ...
|
| Sending a BufferedImage to a ASP page | 02 Jun 2005 08:02 GMT | 1 |
I am new to Java and am trying to create an applet which uploads a BufferedImage to a webserver. I need it to be sent via a URLConnection and POSTed to an ASP page which will then save the file to the server and also modify a database.
|
| Html file inside jar | 02 Jun 2005 07:56 GMT | 3 |
I've created a jar, which contains also description.html. Now in my main class I want to show it on the screen using JEditorPane. But to do that I need a path to that file (it works when I specify the whole path, like file:///c:/myFiles/.../description.html, but I want to make it ...
|
| Regular expression for n consecutive characters | 02 Jun 2005 06:53 GMT | 2 |
How do I replace consecutive occurances of any character in a string, to just one. eg: "aaabbbcc" to "abc" Pattern repeatedChars = Pattern.compile("([a-z]){2,}+"); String s1 = repeatedChars.matcher("aaabbbcc").replaceAll("\\1");
|
| Eclipse feature like NetBeans virtual filesystems? | 02 Jun 2005 04:40 GMT | 1 |
Does Eclipse have a feature like NetBeans' virtual filesystem feature? Am I just missing it? Going through the Import/Export dialog is a royal pain when I want to work directly on a CVS or FTP server.
|
| Good programming question | 02 Jun 2005 01:47 GMT | 4 |
I was just wondering as to what is a better standard to program by. If I have a class like this: class MyClass { private int myVariable;
|