| Thread | Last Post | Replies |
|
| Checked Exception loophole | 06 Jul 2008 06:46 GMT | 19 |
When I call a method via an interface reference rather than a class reference, all the checked exceptions it could throw will not necessarily be known. So the calling method won't know to use a try block or declare throws
|
| import library? | 06 Jul 2008 06:15 GMT | 4 |
i downloaded Java Advanced Imaging library, JAI. it installed into C: \Program Files\Java\jre1.6.0_06. thats what the java installer didi at leats, lookign ther ei dont find IAJ i find im and images.
|
| repaint method and design question | 06 Jul 2008 04:01 GMT | 36 |
I have two classes: one for the GUI the other for various scanning methods on a file system. I'm experiencing an issue where, while scanning,
|
| Efficiently concatenating contents of multiple files | 06 Jul 2008 03:27 GMT | 7 |
Hello to all Java programmers out there. :-) I was just wondering what would be the most time / space efficient way of concatenating contents of different files to a single file. Sample usage would be:
|
| JNI - Passing and returning complex values | 05 Jul 2008 23:41 GMT | 12 |
I'm a C programmer with limited Java experience, and need to use JNI to implement a library in Java on top of a C library that consists of a bunch of functions, each receiving some parameters from the operating system. For each C function, the corresponding Java method
|
| Where to find libraries? | 05 Jul 2008 12:15 GMT | 4 |
Im new to Java and google doesnt give a "final answer." Which is the best site for browsing Java libraries? I am specifically looking for a library to open,edit and check pixelcolors of images.
|
| private, nested public, class visible outside package | 05 Jul 2008 11:58 GMT | 8 |
This is probably more a design than programming question, but I can't find a Java group for that[?] I have a class that is private within a package, but contains a nested class that I want to be public outside the package, i.e.
|
| Question on associativity and precedence | 05 Jul 2008 01:12 GMT | 7 |
int[] z = {10,20,30,40,50}; int index = 4; z[index] = index = 2; System.out.println(z[0]);
|
| Timer Schedule TimerTask for same hour every day | 04 Jul 2008 19:10 GMT | 6 |
If the current time is 18:50 and i schedule Repeating daily TimerTask to 18:52 then everything is file its being run at 18:52 daily however if i schedule it to 18:48 then its being run immediately (and i dont want that) as i run the application :(
|
| SAMBA-esque server in java | 04 Jul 2008 18:51 GMT | 4 |
I have a database application written in with strictly hierarchical data and I would like to expose it to the windows platform as if it were a mountable network drive. Where do I begin finding out how to do that?
|
| J2EE Design Level Interview FAQs & Solutions | 04 Jul 2008 17:26 GMT | 4 |
J2EE Design Level Interview FAQs & Solutions Hi, I have gathered some of the commonly raised design issues in J2EE applications and discussed on the solutions for the same. Please visit
|
| Matching brace in eclipse | 04 Jul 2008 16:22 GMT | 10 |
Is there way to go to matching brace in eclipse. You can go to matching braket (Ctrl+shift+P), but not matching brace ('}'). This is useful, but I found no way to do it.
|