| Thread | Last Post | Replies |
|
| Printer Tracking Dots | 13 Nov 2007 08:08 GMT | 21 |
I discovered yet another intrusion on civil liberties by the Department of Fatherland Security. see http://www.eff.org/pages/list-printers-which-do-or-do-not-display-tracking-dots
|
| I'm not sure what to put in the subject but opinions sought please | 13 Nov 2007 07:35 GMT | 5 |
I'm not sure how to best ask this question so I hope I make myself clear :) I'm wondering what the best way to implement dynamic handling of customer defined functionality in a J2EE web app. For example ...
|
| How to refresh a JTextField before continuing execution? | 13 Nov 2007 05:19 GMT | 5 |
In several of my Dialogs, I have some phone number, file path, etc. in a JTextField. Then there is an button that starts some long running class. My problem is that I would like to convert the {phone number, SSN, file path} to its canonical form and have the user see it
|
| Need to modify JFileChooser's default behavior | 13 Nov 2007 04:58 GMT | 3 |
The problem I am facing is solved in Unix with this:
> ls -ld * My JFileChooser instance is supposed to retrieve a filepath with a directory at the end.
|
| simple program using interface " iterable" | 13 Nov 2007 03:36 GMT | 9 |
Hello, I have to write a simple program containing a list which would use a interface iterable or iterate (don't know exaclty whitch one it ). The list ( which would be programmed on my own) would return the iterator, which would use the standard
|
| Executing batch files stored in Jar | 13 Nov 2007 03:16 GMT | 9 |
I have some batch files stored in a jar file. Can I execute them while they are in the jar file or do I need to get them out first and put them in a temporary directory? I'm aware of how to load them: getClass().getResource("/batchfile.bat")
|
| Strange problem intersecting java.awt.Polygon | 13 Nov 2007 00:11 GMT | 4 |
I have a strange problem. I am defining a polygon and I try to see if it intersects other rectangular shape. Specifically: java.awt.Polygon pol = new java.awt.Polygon(); pol.addPoint(1, 0);
|
| DocClient | 12 Nov 2007 22:33 GMT | 2 |
I have a syntax question regarding a "max hits" parameter used by DocClient (an Application Programming Interface uses DocClient). The statement is shown here: req.setRequestParameter(new UHGDocumentRequestParam("max hits", "1"));
|
| How to convert pdf to xml | 12 Nov 2007 21:40 GMT | 7 |
Hi, all. I want to convert a pdf file to a xml which has not only the text of the pdf file but also the layout information (e.g. font). There are dozens of open source libraries--pdfbox, itext,..... Which one is
|
| NIO, SocketChannel and packet processing | 12 Nov 2007 19:59 GMT | 10 |
I am using non-blocking NIO with SocketChannel to send data from a server to a client in "packets". Now, I thought that if I send 3 packets of 1024 bytes each and then call read() at the other end 3 times I would be able to read 3 separate packets. However, it seems that the ...
|
| challenging tricky program ... need help | 12 Nov 2007 19:21 GMT | 19 |
look at the code below n plz help be solve the trick ... class testTrick{ public static void main(String args[]){ }
|
| evaluate function | 12 Nov 2007 19:16 GMT | 7 |
What is easiest to do if I want to make a program to evaluate the value f(x) of some function at several points. Is it possible to specify the function first, for example f(x) = x^3 - x - 4 and then afterwards type for example f(10) and get the result
|
| how can i add recipient name in "To" field of the email | 12 Nov 2007 18:23 GMT | 3 |
I am using javamail to send multiple emails (one email is send to one person only). But I would that the recipient when receive this email, in the "To" column of his email software, instead of the email id where the email
|
| A question about Exception inheritance | 12 Nov 2007 17:11 GMT | 5 |
I have three classes(Animal, Dog and Cat). For them, I have created three kinds of Exception class too: AnimalException, DogException and CatException. Animal is the superclass of Dog and Cat.
|
| Why are the contents of this table not being shown? | 12 Nov 2007 17:03 GMT | 24 |
The code below was entirely generated by a visual GUI builder (*). This is the way it looks like, in design mode: http://patriot.net/~ramon/misc/InvisibleTable.png My problem is that the cell contents are not being displayed at run
|