| Thread | Last Post | Replies |
|
| JTables and dynamically adding data | 27 Apr 2008 18:52 GMT | 7 |
I have a JTable that I want to add a new column to every time someone clicks a button. I have been reading about extending the AbstractTableModel, but I don't how this allows you to add a new column. The examples online show what happens when a user edits a
|
| Is System.in an object? | 27 Apr 2008 18:26 GMT | 7 |
I think System is an object and in is one of System's fields. Can someone give me a clarification?
|
| offset-based hash table for ASCII data | 27 Apr 2008 11:11 GMT | 45 |
I'm looking for an offset-based data structure to hold character data. Background: I'm working with an app whose server is written in Java while the client is in C. The server needs to package up a bunch of data and ship it to the client where it will be traversed, read-only, ...
|
| Segv Fault Handler for Java? | 27 Apr 2008 05:54 GMT | 8 |
I'd like to know if we can do some user-level signal handling like those provided in the Linux + C/C++? What I would like to do is to capture SEGV fault signal (or to make it simpler, null pointer exception) which can happen anywhere in the Java user
|
| Composition vs. inheritance | 27 Apr 2008 04:04 GMT | 33 |
While I have been programming for many years, I have decided that I need to start thinking more like a developer than a programmer. As such, I have been trying to improve my Java skills and OOAD skills. One of the items I have run across in my self-education is the axiom
|
| Clean up after exception thrown in constructor | 26 Apr 2008 22:06 GMT | 19 |
I have a class hierarchy where the constructor of a child class ("Ford") can throw an exception, while the constructor of the parent class ("Car") has some side-effects. If construction fails due to the Exception on the child class being
|
| shoulf | 26 Apr 2008 20:28 GMT | 3 |
I am developing a web application to allow users setup a complete test environment for their specific needs :- - hardware - users
|
| Short-lived Objects - good or bad? | 26 Apr 2008 20:24 GMT | 25 |
My own position (and also what I've gathered in workshops before my SCJP and also from reading this newsgroup) was, that generally it is better to allocate and drop objects inside a loop, rather than allocate them before the loop
|
| Check if a url is up | 26 Apr 2008 20:20 GMT | 7 |
Hi in the past i was using the followng code below to check if a server was up and if it was to call a jsp... However the jsp now resides to my server so there is no point really of chekcing if it is up to call it ..
|
| use "explain" of mysql in Java | 26 Apr 2008 15:33 GMT | 7 |
While "explain" works perfectly in mysql console, it does not print out anything in java code. Is there any workaround? selectCmd = " select * from "; selectCmd += " t1";
|
| to get path... | 26 Apr 2008 15:18 GMT | 3 |
I have the path of computer's sharing folder \\MS27\\masterroot. How can I get the absolute path of this folder on that computer?
|
| simple help about JFileChooser | 26 Apr 2008 14:43 GMT | 5 |
here is a method i writte in java public void aaa(){ JFileChooser chooser=new JFileChooser(); chooser.setFileFilter(new FileFilter() {//
|
| Temp memory needed for CMS heap compaction? | 26 Apr 2008 07:00 GMT | 1 |
Does anyone have inside information on how much temporary memory Sun Java 1.5 needs for heap compaction while using the CMS collector? I'm tuning new 16GB 64 bit Solaris systems where the Java heap is mostly small objects. If I shrink the Java heap too much, there's physical
|
| How to make a Java class only visible inside the package & not visible to other packages? | 26 Apr 2008 02:56 GMT | 6 |
I want to make my Java class Person only visible to other classes located in the same package, invisible to other classes in other packages. How should I do that? By trying different keywords, I found one way is:
|
| I have an excellent Internet project to start a startup. | 26 Apr 2008 02:30 GMT | 11 |
I have an excellent Internet project for entrepreneurship. But I am not a technology-savvy guy. The requirement on technology is not that hight if you are an experienced web programmer. Currently I have no business plan. Because it is difficult for me to estimate size of the
|