| Thread | Last Post | Replies |
|
| Creating 'vanity' domain names on the fly. | 12 Jul 2005 23:40 GMT | 3 |
Hi - Any help or pointer on this would be greatly appreciated. I'm working on something similar to blogger.com. Users sign up and they get their own webpage, with a domain name of 'username.blogger.com'. Since blogger.com is doing it on the fly (as you sign up), I'm sure
|
| read a passwort from input | 12 Jul 2005 23:26 GMT | 9 |
Is it possible to read a password from commandline? System.in can only read a full line after a Return, but I want to read every keystroke and I want to decide, if the character will be shown in commandline or not. Thanks, Sven Bluege
|
| Empty interface | 12 Jul 2005 20:19 GMT | 10 |
If I have an abstract class AbstractSomeClass and in order to avoid a situation where passing the parameter requires writing someMethod(AbstractSomeClass asc), I create an empty interface called SomeClass and then have AbstractSomeClass implements it so that i can do
|
| IntelliJ Problem | 12 Jul 2005 18:56 GMT | 1 |
I have a class which is causing me problems. The icon next to the name of the class contains a little "x" in the upper left corner...I don't know why but all the other classes depending on it cause an error like "can't resolve symbol class". I deleted it, re-created it, but it
|
| How to set system.out.print caret at the same position? | 12 Jul 2005 17:55 GMT | 3 |
I have a console program that prints numbers. I want the newly printed number replace old number at the same position. How can do it? Thank you very much in advance.
|
| Answer: Re: weird exception during start of applet... (J2SE5) | 12 Jul 2005 15:07 GMT | 2 |
Andrew Thompson <SeeMySites@www.invalid> wrote in message news:<17kick2c7q5yn$.ohv2b8i53zkj$.dlg@40tude.net>... /W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
> LOL! |
| Error in downloading .txt files | 12 Jul 2005 13:24 GMT | 2 |
I get the following error when I try to open .txt file from my application. Cannot find the C:\Documents and Settings\akhila\Local Settings\Temporary Internet Files\Content.IE5\AVPXGTFX\add[1].txt.
|
| What is Expresiveness in a Computer Language? | 12 Jul 2005 12:41 GMT | 15 |
What is Expresiveness in a Computer Language 20050207, Xah Lee. In languages human or computer, there's a notion of expressiveness. English for example, is very expressive in manifestation, witness all
|
| Finding Dependencies | 12 Jul 2005 12:13 GMT | 3 |
Eclipse seems to have no trouble figuring dealing with cross package dependencies during debugging. However, when it comes time to build and sign jars, I wanted to get a list of files that need to go in the jar.
|
| save slider values to file? | 12 Jul 2005 09:41 GMT | 3 |
I am looking for some Java code which allows the user to position the marker on the slider and then click Save so that the related number is saved to a file on the hard disk ... Any pointers as to where I might find such code?
|
| Transparency in Java images | 12 Jul 2005 08:16 GMT | 1 |
Java supports full 8 bit transparency in images, but it's absurdly difficult to actually get a transparent image you can draw. Here's some hard won knowlege embedded in a demo with source code. http://www.andromeda.com/people/ddyer/java/imagedemo/transparent.html
|
| Adding License to a windows based application | 12 Jul 2005 07:06 GMT | 1 |
Can anyone can guide how to add the license to an windows based applications An application is developed using JAVA. The type of License, that we are looking is, providing a trial version
|
| java.lang.OutOfMemory Error | 12 Jul 2005 06:20 GMT | 25 |
In a servlet, I am reading from the database and writing to PrintWriter stream. The database returns around 50,000 rows. I create a StringBuffer object just once outside the ResultSet loop and then append all my database data to it and write it to PrintWriter at the
|
| Java -Xmx Option | 12 Jul 2005 02:37 GMT | 1 |
My client has a server which has 4gigs RAM and Im running my server using the java -Xmx option. When I set the Xmx to a number greater that 1236m on a windows 2003 box I get an error from the jvm that its unable to allocape heap size, if I do the same on a windows 2000 box I can ...
|
| Of Abstract convention and Marker interface | 12 Jul 2005 02:21 GMT | 2 |
Is it a convention to prefix "Abstract" to all abstract classes? I have come across several classes in the java api that do not adhere to this convention. If I were to do that, I have to resort to creating a marker interface so
|