2
votes
2answers
75 views
Controling the Volume of an Audio Clip in Java 1.4
I would have thought that this would be an easy thing to do, but no amount of googling around has turned up any solutions.
I have written an application for a client that runs in …
1
vote
4answers
140 views
data type to represent a big decimal in java
Which data type is apt to represent a decimal number like "10364055.81".
If tried using double:
double d = 10364055.81;
But when I try to print the number, its displaying as "1 …
1
vote
10answers
390 views
Java source upgrade from 1.4.2 to 1.6.0_10 recommended ? (skipping 1.5)
Our desktop-only product at work has been using JDK 1.4.2 until now (also 1.4.2 JRE shipped with product). I am trying to convince the management to let us upgrade to a newer versi …
0
votes
1answer
128 views
Using VisualVM with a JDK1.4 application?
I'm interested in using VisualVM (running on a JDK 1.6 environment) to monitor and troubleshoot some issues with an application deployed and running on JDK 1.4 (and Tomcat 5.0).
B …
0
votes
0answers
58 views
Spring and AOP Configuration on Common Java Type Extensions
I have the following XML cross cutting definition in my context:
<bean name="/Details.htm" class="com.DetailServlet">
<property name="myPerfLogger" ref="perfLogger"& …
0
votes
6answers
271 views
How to run a task daily from Java?
How can I run a task daily at a specified time (say 11:00 am) using java.util.Timer? I'm using JDK 1.4.2, I know it's old, but it's what the project requires.
0
votes
1answer
37 views
Web Services using J2ME and Java Version 1.4
Howdy,
We are trying to program an MFP (Multi-function-printer) to communicate to our backend using Web Services. We are sending large images so using MTOM is important. Since we …
0
votes
2answers
198 views
SoapAction Issue under Java 1.3
This problem has been bothering me for days. Hopefully someone has come across this before and has developed a workaround.
So I've developed a middleware Java app which during its …
3
votes
5answers
503 views
Is it possible to put java 1.4 on 64 bit Ubuntu?
I need to set up a legacy app that uses Tomcat 4 and runs using the 1.4 JDK.
I tried to install the linux JDK 1.4 from the sun download site on Ubuntu 9.04 but it wouldnt install. …
2
votes
4answers
166 views
Running Two Versions of Java JDK
I primarily use JDeveloper 10 with JDK 1.4.2 on Vista. I would like to install Eclipse and have it run the latest JDK 6.
Is this possible without conflict?
Ideally I would like …
3
votes
3answers
739 views
How to add an xml element in Java 1.4
I am trying to add a "title" element but am getting a NO_MODIFICATION_ALLOWED_ERR error...
private static void saveDoc(String f) throws Exception
{
DocumentBuilderF …
3
votes
2answers
229 views
Suppressing warnings for JDK1.4 project
Is it possible to suppress warnings in Eclipse for JDK1.4 project?
EDIT:
Longer version. There is a project which requires JDK1.4 (no annotations). Only way of suppressing warning …
