| Thread | Last Post | Replies |
|
| The Worm that Ate Microsoft | 17 Aug 2005 10:37 GMT | 1 |
http://www.microsoft.com/technet/security/Bulletin/MS05-039.mspx You have probably heard on the TV news of the worm shutting down businesses all over. That url at the tom is the patch. It affects Windows machines.
|
| Multiple streams per file | 17 Aug 2005 08:55 GMT | 4 |
Will two File[Out|In]putStreams using the same File object cause havoc? i.e., I want two streams reading from the different locations in the file. Or is it better to have a seperate File object for each? ~S
|
| Integreating the JScrollPane to JTable | 17 Aug 2005 07:56 GMT | 5 |
I've tried to integrate the JScrollPane to the one the the cell in the JTable. These are my code I've tried. ==================================================================
|
| Need to save properties in XML file | 17 Aug 2005 05:27 GMT | 5 |
I need to save spreadsheet properties(spreadsheet name, column name, column width etc.) in XML file. Can anyone give me any tips? I am not very familiar with XML so any advise is very appreciated.
|
| Multiple Deflater Objecters on a file | 17 Aug 2005 03:38 GMT | 2 |
As an academic exercise I am writing a multi-threaded program, in which each thread uses a Deflater on the same file. I am pretty sure that I can't just start reading at different offsets with each deflater. I assume I need a method of sharing the state of
|
| Printing in an applet | 17 Aug 2005 01:42 GMT | 6 |
I have a charting applet that has a print method that works just fine. My problem is I am trying to initiate the print method from a javascript routine but it doesn't work. I access my applet from javascript all the time (feeding data hidden in
|
| Systray in Java - Restricting to one instance | 16 Aug 2005 22:24 GMT | 3 |
I am looking for information for restricting my systray icon to one instance (Should not create another Systray Icon on launching the application again or starting the service...). Any help or pointers is appreciated.
|
| B+ Tree versus Ternary Search Tree | 16 Aug 2005 21:13 GMT | 2 |
Was looking out for some benchmarking for B+ Trees vis-a-vis Ternary Search Trees. a) For structured search For instance, user needs to search for some entity. He does so by
|
| More anti-aliasing puzzles | 16 Aug 2005 20:42 GMT | 25 |
here is a simple extension to JTextArea to let you control whether the fonts are displayed with anti-aliasing. The only catch is, it never anti-aliases the fonts. Similar logic for AWT works fine. Does anyone know what I am doing wrong? Do I have to override some method other
|
| Waiting (nicely!) for a thread | 16 Aug 2005 17:06 GMT | 7 |
I'm writing a class which can include a long IO-bound routine and I'm trying to show a progress bar during the loading of this data. I've separated the IO code into a seaprate thread which puts up a progress pane to show what it's doing. This bit all works.
|
| Cast Syntax | 16 Aug 2005 16:25 GMT | 4 |
Given: public class MyAdapter { } public class MyTest {
|
| Parsing a Boolean expression easy? | 16 Aug 2005 16:18 GMT | 7 |
String testText = "\"christian bongiorno\" AND Joe OR \"Electrical, plumbing\""; I would like to parse the above text into it's 'components' in an easy and preferrably native java library fashion. I mean, I can implement a
|
| Can you detect if a class is mutable ? | 16 Aug 2005 15:52 GMT | 31 |
Is it even possible to correctly implement a method with the signature below ? "public static boolean isMutable(Class c)" This method should be able to use reflection to detect if an arbitrary
|
| Objects | 16 Aug 2005 14:03 GMT | 10 |
Please bear with me as i have a rather silly question. Lets say i have an object and i want to convert that object say a document or any other object to an array of bytes. Does anyone know how to do this? Any help is greatly appreciated
|
| Auto launch ejb.Timer without webapp? | 16 Aug 2005 12:37 GMT | 2 |
I'd like to perform a DB task every hour or so in an EJB container. However, I can't seem to figure out a simple way to have the timer load on startup as I can't do a simple load-on-startup servlet or ServletContextlistener. The app is contained only in a jar, deployed in
|