... not allways true with jdk1.2! see the output of this test prog. -manoj public class StringTest{ public static void main( String[] arg ){ FooFinal foo1 =...
Manoj Cheenath
mcheenath@...
Sep 17, 1999 3:35 pm
44379
Isn't this in a FAQ somewhere? :) I think that the reason behind this is that it's pretty inefficient for a database to do this. It wouldn't be able to start...
Tim McCune
timm@...
Sep 17, 1999 3:39 pm
44380
I've tried unsubscribe twice now - it doesn't seem to work. Keith ... To unsubscribe, mail advanced-java-unsubscribe@... To get help, mail...
Keith Johnston
keithj@...
Sep 17, 1999 3:44 pm
44381
HI I'm doing a simple RMI client & server. The server part has the following code: (MyServerImpl.java) public static void main(String args[]){ ...
Pere Joan Serra
pjserra@...
Sep 17, 1999 4:13 pm
44382
... You might have to drop to native code to tag objects with a combination of the hostname + JVM-process-ID + Object Hashcode. JavaSpaces (or Jini) may...
Frank D. Greco
fgreco@...
Sep 17, 1999 4:19 pm
44383
... Here is an example of JNI to obtain a UUID (Universally Unique Identification): http://ringlord.com/platform/java/jni-howto.html ... Olivier Dedieu - INRIA...
Olivier Dedieu
Olivier.Dedieu@...
Sep 17, 1999 4:30 pm
44384
Hello, If you're going to go with a JNI approach, you might want to check out this C implementation of UUID generation: <http://www.pandawave.com/uuidlib.html>...
Randall R Schulz
rschulz@...
Sep 17, 1999 5:24 pm
44385
Is there a 100% Java solution? ... From: Randall R Schulz [mailto:rschulz@...] Sent: Friday, September 17, 1999 12:19 PM To: Olivier Dedieu; Frank...
Yi He
YHe@...
Sep 17, 1999 5:38 pm
44386
... Hmm.. that is interesting. What is the configuration you are using? Are you using HotSpot? Which compiler? Here are my results: public class StringTest{ ...
Michael Armentano
marmenta@...
Sep 17, 1999 5:42 pm
44387
Yes. The CGI program needs to initiate the connection to the Java program. TO do this, the Java program needs to be a server (TCP/IP) that accepts connect(s)...
Jeff Gutierrez
jeff@...
Sep 17, 1999 5:50 pm
44388
Sorry fro the delayed respones, I've been practicing hurricane avoidance ( live on NE Florida coast ) and apparently got enrolled in an advanced class for...
Joe Sam Shirah
jshirah@...
Sep 17, 1999 6:11 pm
44389
... True, but there is no point in making a final method protected. ... To unsubscribe, mail advanced-java-unsubscribe@... To get help, mail...
Michael Armentano
marmenta@...
Sep 17, 1999 6:22 pm
44390
Michael Armentano wrote ... Making a final method also protected would have the effect of making it not callable from other classes that are not in the same...
Mitch Gart
mgart@...
Sep 17, 1999 6:32 pm
44391
What about the UID in java.rmi.server package? I've never used it, so I don't know what it really does. This is what it says in the JavaDocs: UID public UID() ...
Baker, Alex
BakerAl@...
Sep 17, 1999 6:40 pm
44392
The Advanced Java archive at EGroups is now back online. We've got a big gap from June 6 until today, but at least messages are now getting archived again....
Burgess, Jay
jburgess@...
Sep 17, 1999 7:00 pm
44393
Hi, I have a problem with the process.exec() command. I invoked a script named runtr as process.exec("process"). This works fine, but I want to pass an ...
Chandrakant Yemparala
ychandra@...
Sep 17, 1999 7:41 pm
44394
I am writing to a file. I need to write a carriage return / line feed. When I try "\n" to my FileOutputStream - it doesn't work. I try private final static...
Jay Baker
JBaker@...
Sep 17, 1999 7:52 pm
44395
... Only classes which are in the same package can access default, or package, accessible methods and members. Ex: void foo(); int bar; The same applies for...
Michael Armentano
marmenta@...
Sep 17, 1999 7:59 pm
44396
carriage return line feed to fileYou've tried all variations on the theme? ('/r/n' and '/r' are different variants supported by different OSs - '/r/n' is the...
Reuben Firmin
rubz@...
Sep 17, 1999 8:08 pm
44397
Chandra, From the JDK documentation: exec(String[] cmdarray) => Executes the specified command and arguments in a separate process. An example to try might be:...
David Alexander Lestani
david@...
Sep 17, 1999 8:20 pm
44398
Have you seen this command in the API ?? I think this might help you ... Process exec(String[] cmdarray) Executes the specified command and arguments in a ...
Mishra, Sunil
Sunil.Mishra@...
Sep 17, 1999 8:35 pm
44399
Thanks.That worked. Chandra ... To unsubscribe, mail advanced-java-unsubscribe@... To get help, mail advanced-java-help@......
Chandrakant Yemparala
ychandra@...
Sep 17, 1999 9:08 pm
44400
The Unicode escapes are processed a bit earlier in the compilation process than you might have realized. To quote from the Java Spec, Because Unicode escapes...
N. J. O'Neill
njoneill@...
Sep 17, 1999 9:18 pm
44401
Nothing unless the code is compiled with "TEST" defined. Then it looks like it prints diagnostics. I found this code in jikes.cpp: else if...
JON STRAYER
JSTRAYER@...
Sep 17, 1999 9:27 pm
44402
I think you hit the nail on the head here. This is why the compiler was complining about line termination and so forth. Thanks to everybody. Jay Baker ... ...
Jay Baker
JBaker@...
Sep 17, 1999 9:35 pm
44403
Assuming you have a JDBC 2.0 driver, ResultSet.last(); ResultSet.getRow(); Joe Sam Shirah Autumn Software ... From: Russell Politzky <politzky@...>...
Joe Sam Shirah
jshirah@...
Sep 17, 1999 9:45 pm
44404
Actually, you should get and use the System property 'line.separator' to be portable. Then you don't have to worry about the unicode problems either. Joe Sam...
Joe Sam Shirah
jshirah@...
Sep 17, 1999 9:52 pm
44405
mark.foley@... wrote: "I am trying to compare Sun JDK 1.1.8 to IBM JDK 1.1.8, but so far have found no measurable differences while running my code....
Mark Kuharich
mark@...
Sep 17, 1999 10:00 pm
44406
That doesn't always have the desired effect, especially when you're dealing with things like protocols. I did a bit of work with RTSP/Quicktime a few weeks...