| Thread | Last Post | Replies |
|
| Find and replace a word in a file using java | 18 Nov 2005 15:29 GMT | 4 |
My situation is I have a .jsp file which i want to edit a value. Can java read the file, search for the particular word and then modify that word into another value ? Any links to read on this or example. Thanks.
|
| Maven 2.0 & RMI compilation | 18 Nov 2005 14:48 GMT | 1 |
I just noticed that, as far as I know, Maven 2.0 does not support RMI compilation, which is really sad. Am I mistaken or isn't there any way to do the RMI compilation using only Maven? Any plugins. And since we're on the topic: where can I find
|
| houghtransformation | 18 Nov 2005 14:21 GMT | 1 |
I'm looking for sourcecode for a houghtransformation (the one for line detection). Has anyone somethign like that? regards, Johannes Elsinghorst
|
| Use same Class object across multiple jsp pages | 18 Nov 2005 10:17 GMT | 3 |
Is it possible to create an object in one jsp page and then use it in another jsp page. Basically JSP 1
|
| format date in java | 18 Nov 2005 09:28 GMT | 5 |
Simple java question. If my program takes in a date in the format, yyyyMMdd, is there anyway I could output this date in java, in the format, "November 13th 2005". Thanks,
|
| open an existing file | 18 Nov 2005 08:35 GMT | 6 |
How I can open an existing file? Thank you.
|
| Finding the IP address of client proxy from Server side component | 18 Nov 2005 06:39 GMT | 1 |
Hi , All I just want to find out the IP address of the firewall (proxy) for my client machine from my server side component. as the
|
| Creating a web browser in Java | 18 Nov 2005 06:05 GMT | 8 |
I am creating a web browser in Java. In this browser I am using JEditorPane for Browser Window. I am using "setPage(String url)" method to display the page. The browser can display the page but there are some problems which are as mentioned::
|
| Use imageio to convert a .tif image to a .jpg image | 18 Nov 2005 00:33 GMT | 3 |
Can anyone suggest how to use java imageio package to convert a .tif image file to a .jpg image?
|
| help with serializing a HashMap | 17 Nov 2005 23:50 GMT | 3 |
I have the following class that attempts to save a HashMap<T1,ArrayList<T2>> public class Roles {
|
| Batch image compression problem. Help! | 17 Nov 2005 23:28 GMT | 1 |
I am using Java to develop a web application that lets user to upload images to the web server, and the server will automatically resize and compress the images. It lets users to upload maximum 5 images at one time. The system works fine. But sometimes a very strange problem ...
|
| Anonymous and local class names changed in 1.5 | 17 Nov 2005 22:23 GMT | 6 |
Consider the Java class:: class Outer { class Inner { Object o = new Object() {
|
| program using linked lists and recurison | 17 Nov 2005 22:19 GMT | 2 |
ok so i am completely new to java and i don't even know where to begin.....any help would be greatly appreciated!! Given a sequence of numbers, write a class named my_Special_Order to store them in a linked list and then print them on the screen by starting from
|
| BigDecimal and trigonometrics | 17 Nov 2005 22:11 GMT | 34 |
Does anyone know an easy way, or know of freely any available code / packages, to use sine and cosine on BigDecimal with full precision? /Magnus
|
| Generics in 1.5, nonsense warnings? | 17 Nov 2005 21:06 GMT | 4 |
Isn't it strange to see a compilation warning about the following code -------code----- ArrayList<String> a1 = new ArrayList<String>(); ... ArrayList<String> a2 = (ArrayList<String>)a1.clone();
|