| Thread | Last Post | Replies |
|
| print("my name is {name}, and {age}-year old {gender}", name, age, gender); | 02 Jan 2006 16:39 GMT | 7 |
I want to make a print statement as the title appears. The point is, the print function can understand which variable corresponds to the desired parameter name inside the pattern. In C# print functions, the syntax is like
|
| finite state automaton | 02 Jan 2006 16:26 GMT | 6 |
Consider a simple finite state automaton to parse property files. They look like this: # a comment keyword=value
|
| Use of properties class | 02 Jan 2006 16:15 GMT | 4 |
I have the following Ascii file named wscnt: #Sat Oct 08 08:34:32 CEST 2005 #contatore progressivo corrente contatore=0000100
|
| Ant question | 02 Jan 2006 16:12 GMT | 6 |
<fileset dir="${web}" includes="**/*.*" /> what does it mean by preceeding "**" ?
|
| how to convert double to byte[] openvms format? | 02 Jan 2006 15:59 GMT | 3 |
Hi, I am trying to figure out how to convert a double in java to an array of 8 bytes that is compatible with openvms alpha programs. It's more complicated than a big endian/little endian issue. Any ideas? A double on openvms of '3495.0' has the following 8 bytes:
|
| read file.txt in unicode | 02 Jan 2006 14:56 GMT | 4 |
I want a small piece of code (for mobile) which reads entile file "file.txt" from JAR and store it to a string. "file.txt" has unicode format (2 bytes for every char) The following code does not work:
|
| Real tiny JVM? | 02 Jan 2006 14:52 GMT | 5 |
I was wondering if there was a real tiny virtual machine that could be embedded into native projects? Something with a basic garbage collector and language support, but not necessarily AWT and network stuff. Thanks
|
| Why Didn't The Creators Of Java Allow For Generic Array Intialization? | 02 Jan 2006 06:20 GMT | 1 |
Just Curious... Why can't i initialize a generic array like this? private E[] data = new E[10]; This creates a compiler error saying that i can't intialize generic
|
| Regarding Patent | 02 Jan 2006 05:56 GMT | 4 |
We have developed a custom protocol for moving files from one location to another. We would like to apply for patent. Can anyone suggest how to go about it ? Any website? Do I need to have an attorney/lawyer on my side? Kindly help as we are not aware on how to proceed, thanks
|
| Fonts Mac OS java | 01 Jan 2006 22:50 GMT | 8 |
I have a following problem.I need to use external ttf font in java on Mac Computer.I have installed it on system using fontbook.Installed font is visible to standard mac applications word,textedit etc. but when I run java program the font is being replaced by some other font.On
|
| Digital Radio | 01 Jan 2006 21:51 GMT | 7 |
I heard an Internet radio show where the guest was not in the studio, but his voice was CLEARER than the hosts! They explained they were using some sort of digital telephone software. I wonder if Internet interview radio is turnkey problem now, where you
|
| JTable - help | 01 Jan 2006 21:00 GMT | 3 |
I have a problem with JTable - i would like to reedit whole data like this was on the beggining with default constructor like : JTable table =new JTable(matrix1,matrix2); When program runs i like to use different kind of data in this same
|
| Get Array From ByteBuffer (If ByteBuffer doesn't have an array backing it) | 01 Jan 2006 20:58 GMT | 2 |
Maybe i'm ignorant but how can you get a byte[] array from a java.nio.ByteBuffer? (Even when the ByteBuffer does not have an array that backs it?) Im sure you can do this... And what are "relative" and "absolute" methods?
|
| Autoboxing | 01 Jan 2006 20:18 GMT | 1 |
Could someone point to a good tutorial on Autoboxing. This is a new feature in Tiger 1.5
|
| FileInputStream in Servlet | 01 Jan 2006 18:20 GMT | 4 |
I am not sure to be right here at this forum, but: I have a servlet, which I want to debug within eclipse. The servlet is reading a config-file on startup, this file is opend with a FileInputStream(filename), but without a path!
|