| Thread | Last Post | Replies |
|
| finding functions with large stack frames??? | 03 May 2007 09:27 GMT | 3 |
i am trying to find a tool which would (from source code or .jar) tell me the size of the stack frame for each java function. I have a bug which causes a stack overflow but I do not have any information. From the JIT x86 assembler code I could just infer that
|
| elipse server | 03 May 2007 08:43 GMT | 1 |
I would like to build a jsp project with eclipse. can anyone recommend me which server to use? jboss/apache tomcat.. Thanks
|
| Difference between process and threat? | 03 May 2007 08:01 GMT | 8 |
I'm new to java!I'm now learning the multithreats of java! I want to know the difference between process and threat? Considering I'm a rookie,please don't interpret too abstract,it will be better if examples or common analogies including in your explanation!
|
| java.net.SocketException: Connection reset ? | 03 May 2007 07:45 GMT | 4 |
Hello. Look on my code, which can get WWW pages: (for example http://whatismyip.com/) InetSocketAddress socketAddress = new InetSocketAddress(new URL("http://whatismyip.com/").getHost(), 80);
|
| Setting properties on similar objects simultaneously | 03 May 2007 04:38 GMT | 3 |
I'm writing a program with a wide variety of interfaces. Two of them are some JButtons and JToggleButtons. The components are so similar that I'm setting almost identical properties on it, but I have to do it separately because a JButton is not a JToggleButton. My code is:
|
| Annotations and generic programming | 03 May 2007 02:51 GMT | 7 |
Now, one of the big criticisms of type-erasure generic programming is that - well, it's type erasure generic programming: suppose you have public static <T> List<T> doStuff(){ ...
|
| repeating a task for a length of time | 03 May 2007 02:49 GMT | 3 |
What would be the best way to code a task so that it would run iteratively for n seconds. For example, I have to code to fire a http request, but I want to fire that request over and over for 60 seconds. I was thinking about grabbing the time at the start and checking the
|
| Who can tell me how this program runs? | 03 May 2007 02:35 GMT | 1 |
Here is a program written to learn the multithread character of java! class NewThread4 extends Thread{ NewThread4(String name){ super(name);
|
| looking for an open source java tool to calculate no of lines added removed. | 03 May 2007 01:09 GMT | 5 |
I am looking for an open source java tool to calculate no of lines added removed. If you know some tool like that please let me know. It would be of great help. Thanks,
|
| JNDI/LDAP newbie | 03 May 2007 00:26 GMT | 2 |
Hey everyone! So basically I am trying to run a name search using an LDAP server, let's call it ldap.xxx.com. I've never done anything with JNDI or LDAP before, and what I need to do essentially is this: String firstname = "Bob";
|
| What's wrong ? | 02 May 2007 23:20 GMT | 9 |
I have to create the following project public class Messanger { publicMessanger () { // TODO implement constructor
|
| How to deal with empty string when reading input from a file? | 02 May 2007 20:54 GMT | 5 |
My program reads in a text file which has strict format. Briefly, my program looks like: BufferedReader inputStream = new BufferedReader(new FileReader("input.txt"));
|
| Calling Fortran From Java (without a middle man) | 02 May 2007 19:03 GMT | 1 |
I am trying to call some fortran routines from Java as of now the native platform I am using is Win32. All the tutorials I find Either focus on Calling C/C++ from Java or Fortran from C/C++ or Fortran -> C -> Java
|
| Confused: Java6 32-bit vs. 64-bit | 02 May 2007 18:37 GMT | 3 |
I have this program that does some very memory intense computations converting logical formulae into tree automata. The automata get that big that after a while I get OutOfMemoryError. I have this particular formula that gave me problems the first time I started testing the
|
| how to add relative path of files in iframe file attribute | 02 May 2007 18:34 GMT | 1 |
i want to show the content of file in iframe .So iam using <iframe name="I1" src="file://<%=reportFilePath %>" but when i try to open the web page from different pc on the network it didnot display the content of file. but when i click on download
|