| Thread | Last Post | Replies |
|
| SQL request returns incorrect french characters | 02 Nov 2006 16:46 GMT | 1 |
I am creating a JSP page that queries a database that contain french characters. The query works fine and records are returned with the following request: AND DESIGNATION_FR = "Zone d'utilisation générale"
|
| How to find the total and free memory available in RAM. and used & free space available in each disk? | 02 Nov 2006 15:31 GMT | 1 |
How to find the total memory space and free space available in RAM. and how to find the used and free space available in a Disk? If there is any code please do provide me... regards,
|
| open a document from an applet | 02 Nov 2006 14:41 GMT | 1 |
Is it possible to open a document (pdf/word/excel) from an applet i.e. start an application and open a specified file. I know the sandbox is a restriction but can we get round this using a signed applet. Thanks
|
| mutate an object or create a new one? | 02 Nov 2006 14:37 GMT | 23 |
I have a typical situation for the main backbone of the program. In my program, lots of new objects gets created, added in the processing queue ,used and removed from the queue. Something like a air-traffic control system or moving average.
|
| Applets and Multiple JRE Versions | 02 Nov 2006 13:06 GMT | 2 |
We are trying to figure out the best way to support a Windows XP SP2 configuration where the users regularly access (4 to 5) java applets that all require different versions of the jre. We have between 15 and 20 users.
|
| Java MP3 audio recorder | 02 Nov 2006 11:32 GMT | 3 |
Hi, I need source code in java for recording audio in MP3 format. Currently i have a similar code which actually records audio in WAV. Problem with this is that, as it buffers audio (in RAM) in wav format consumes hell lot of memory and ultimately end by throwing out of
|
| JavaBeans members | 02 Nov 2006 11:18 GMT | 1 |
Can a javaBean store and have access via <jsp:setProperty ...> to a data member which is not a String or a primitive, let's say my own created object.? Thanks
|
| How to write a script to run a Java program and set variable values? | 02 Nov 2006 11:02 GMT | 4 |
I have written a Java program. The program needs its several variables filled with values before it can be run. This can be achieved by hard-coded in the program. Alternatively and being nicer and easier, a script can be used and set the Java program's variables' value and run
|
| how to know the properties of the BufferedImage | 02 Nov 2006 09:17 GMT | 1 |
I am working on Tiff Viewer, that displays TIFF format files. In which each page is an object of BufferedImage. displayed image is object of the bufferedimage. i want to get the all properties of the that BufferedImage.
|
| JFrame problem | 02 Nov 2006 05:53 GMT | 1 |
I try to develop a program that has a mainFrame with button to open frame_1 my problem is: ***when I close frame_1 the whole program close but I need to close
|
| A java class invokes a JSP? | 02 Nov 2006 04:59 GMT | 5 |
I have been trying to have a class call a JSP, and I have it working as follows: String str = someFunction(http://www.joe.com/InvoiceEmail.jsp); so the class can use the output of the jsp. But this seems a bit wasteful of
|
| getting a null pointer, object is most definatly instantiated | 02 Nov 2006 02:12 GMT | 5 |
Below is the code for my class: package orthopedicnotegenerator; import java.awt.*; import java.awt.event.*;
|
| reading a file as an xsl instruction? | 02 Nov 2006 01:20 GMT | 4 |
How can I read a file as a template instruction in an xsl? Upon matching a template, I need to add the contents of an entire file in the result tree. Is that possible?
|
| Why Java's math expression (power) is so inconvenient and error prone? | 02 Nov 2006 01:09 GMT | 6 |
My program need a lot of calculation of power. In many programming languages, 2**3 = 8; The syntax is clean and easy. But in Java,
|
| How can I detect a carriage return using java.net | 02 Nov 2006 01:04 GMT | 29 |
I have code a bit like this: BufferedReader bis = new BufferedReader(new InputStreamReader(tserverSocket.getInputStream())); // Here I write some data - getting a response - some lines of text returned
|