| Thread | Last Post | Replies |
|
| servlet filter problem | 21 May 2007 18:56 GMT | 1 |
I have an web application. Develop it in RAD, which has IBM WebSphere Application Server, 6.0.0.0 . I deploy the application on IBM WebSphere Application Server - Express, 6.0.2.5 on AS400
|
| Pass by reference or value? | 21 May 2007 18:15 GMT | 17 |
Hello friends, I am facing a lot of confusion over a simple issue of parameter passing. Just let me know what I have figured out is right or wrong: "There is no pass by reference in Java. Everything is passed by value.
|
| Event-Handling: Using one single class for different events? | 21 May 2007 17:32 GMT | 4 |
I am rather new to Java, so please, don't blame me for this question. What I want is to seperate the GUI- from the Application code. Hence, I have created three classes: 1. a Main class
|
| How to stop a socket when it is connecting to remote? | 21 May 2007 16:50 GMT | 8 |
in one thread it's: Global.socket_control = new Socket(InetAddress.getByName("192.168.1.22"), 1234); when the IP:192.168.1.22 does not exist, it will take so much time to
|
| How to set attachment name with JavaMail | 21 May 2007 12:29 GMT | 1 |
Folks, I am using java mail to send out file attachments. A code snippet is: ----------- String attachmentPath = "C:\temp\MyFile.txt";
|
| Another topic on how to read a binary file. | 21 May 2007 09:34 GMT | 25 |
I know this has been asked a few zillion times but I couldn't find a good answer for my problem. I have a binary file, the Ant Movie Catalog database if anyone knows the software. It is a file where information about movies is stores,
|
| Calling a .bat file from a java program****** | 21 May 2007 08:25 GMT | 13 |
Can anyone provide me some hints on calling a "*.bat" file from a java program.I have a .bat file, in which I am calling another third party java class which is there in a jar file. Let this be my bat file.
|
| Beginner doubt about access and methods | 21 May 2007 06:38 GMT | 10 |
I have a doubt about how to write classes. I have written something like this: ----------- /*
|
| Send file to a path | 21 May 2007 04:22 GMT | 3 |
I am using jasper reports for reporting and i am sending the file as attachment to the client, please see the below code for more detail, I just need to save in a particular folder in client location, how can it be possible.
|
| resultset - performance difference - get(1) vs get("col_name") | 21 May 2007 02:54 GMT | 4 |
I'm looking for performance comparisons between rs.get(1) vs rs.get("col_name") where rs is a java.sql.Resultset, and the database is Oracle. So far I haven't found any that provide hard numbers - such as, e.g. "rs.get("col_name") took 2.3 times as long as rs.get(1)".
|
| JBoss | 20 May 2007 23:15 GMT | 25 |
can I use JBoss AS and Seam commercial? Thanx!
|
| Redirect if invalid URL entry | 20 May 2007 22:15 GMT | 3 |
On my Tomcat 4.1.27 container, the below Pagination works great using a Servlet where page number is entered in the url and has to be a digit: http://127.0.0.1:8080/theWeb/mypackage/page/1
|
| TreeMap/Comparator a mapping problem | 20 May 2007 20:39 GMT | 3 |
When I run the following code several output lines are not what I expect. I expect: 1:1:7 [red, red]
|
| Arrays.asList(int[]) result unexpected | 20 May 2007 19:10 GMT | 3 |
I'm confused about the behavior of Arrays.asList(int[]). In the code snippet below, the line commented with ERROR is the part I don't understand... I would expect the number 2 wrapped in an Integer would be returned when calling b.get(1), but instead I just get a generic
|
| website builading tools | 20 May 2007 17:52 GMT | 3 |
I work in java(jsp and servets). i want to build a new website. Can anyone tell me what new tools are available free online that i can use?
|