| Thread | Last Post | Replies |
|
| Regex is correct but java won't parse it ? | 24 Aug 2007 15:55 GMT | 18 |
I want to create a logic class to evaluate simple logical epxressions and print their truth table. I am using a regular epxression that looks for a pattern commencing with a char and followed by any number of (operator char) groups, (for the sake of simplicity only the AND ...
|
| new comers | 24 Aug 2007 14:44 GMT | 24 |
Being new comers to java programming field, in what way they can improve their skills to become a best programmers this help all the new comers, if any body having ideas please tells us which book book should we refer.
|
| Not able to send RTP packets | 24 Aug 2007 11:13 GMT | 12 |
The code given below is not sending RTP packets using JMF. can any one suggest how can i enable below code for sending RTP Packets. import javax.media.*;
|
| fastest way to create empty file | 24 Aug 2007 06:25 GMT | 14 |
What is the best way to create a large >10GB empty file using java API (not native os function call)? thanks from Peter (cmk128@hotmail.com)
|
| one thread is created for each object construction? | 24 Aug 2007 04:08 GMT | 12 |
For each object construction (for example, Emp e = new Emp(); ), does the JVM creates one thread for each object construction? Each new created object should be stored in the heap. please advice. thx.
|
| Java text / reference book? | 24 Aug 2007 02:16 GMT | 6 |
I've been programming a long time in Fortran, C, Perl, and others, but not (yet) in Java. My daughter will be taking her first programming course this semester in High School. I'm wondering what would be a good book to have on hand. It should be one she can learn basic ...
|
| Xah's Edu Corner: Under the spell of Leibniz's dream | 23 Aug 2007 23:30 GMT | 7 |
Dear computing comrades, Today, i'd like to show you a piece of literature written by a eminent mathematician Edsger W Dijkstra. Here's 2 interesting quote from his letter:
|
| java technologies | 23 Aug 2007 23:22 GMT | 4 |
http://corejava-technologies.blogspot.com
|
| Serial Port API | 23 Aug 2007 21:57 GMT | 15 |
I am new to JAVA (very new) and thinking about using JAVA to control instruments connected to a PC via the serial port. I've searched the group and came across discussions about problems with early releases of Sun's serial API.
|
| Confused with the ArrayList | 23 Aug 2007 21:26 GMT | 11 |
ArrayList main = new ArrayList(); ArrayList copy = new ArrayList(); copy.add("Test1"); copy.add("Test2");
|
| Object retval = (Object)bindings.get(var); // why not OK? | 23 Aug 2007 20:12 GMT | 3 |
I'm wondering why I cannot simply cast the return result of .get() to satisfy the compiler expectation that the method return an object. Instead I have to assign the result of .get() to a variable and then return that.
|
| java.lang.IllegalStateException: No Java compiler available | 23 Aug 2007 20:00 GMT | 5 |
tearing my hair out on this one. Thuis started as an upgrade issue till i realised that my un-used tomcat5 installation didn't work either with my test jsp. I have, in desparation, un-installed all java / tomcat libs and re-
|
| source for servlet-api.jar | 23 Aug 2007 19:08 GMT | 9 |
My project uses servlet-api.jar. When debugging, I wanted to step into its classes (such as HttpServlet) but I got "Source code not available". I found what I thought was the source at https://sdlc4e.sun.com/ECom/EComActionServlet/DownloadPage:~:com.sun.sunit.sdlc. content ...
|
| Applet xxxx notinited | 23 Aug 2007 18:45 GMT | 9 |
I'm building a java applet by using Netbeans 5.5. I then embedded the applet into web application. The problem is that when I compiled the file, it returns no error. However, when I run the .jsp file in the browser (I'm using Firefox
|
| invisible JTable headers | 23 Aug 2007 18:41 GMT | 2 |
Does someone know why headers of this table doesn't appears? import java.awt.*; import javax.swing.*; public class TestTable {
|