Note, when it says Warning, it isn't an error. You are doing finethere isn't a
problem...it just isn't using a JIT.
Cheers
James.
Don Hatch wrote:
> I can't seem to get my envireonment variables to work. When I run javac file.java I
>get his error:
> "Warning: JIT compiler "sunwjit" not
On Mon, 15 Nov 1999 11:51:52 -0700, Don Hatch wrote:
>I can't seem to get my envireonment variables to work. When I run javac file.java I
>get his error:
>"Warning: JIT compiler "sunwjit" not found. Will use interpreter."
>
>It creates a class file and runs fine, but I still get the error.
I can't seem to get my envireonment variables to work. When I run javac file.java I
get his error:
"Warning: JIT compiler "sunwjit" not found. Will use interpreter."
It creates a class file and runs fine, but I still get the error. If anyone has any
suggestions, please help. I'm running
Use JAVA_HOME environment variable and assign your classpath to it.
Jacob Nikom
Jalaluddin Riaz wrote:
>
> pardon me for this silly question, but i have to know. How do i set multiple
> classpaths? i have jdk1.2pre2 running and want to do some stuff with
> servlets and jdbc. the jdbc is fine fo
pardon me for this silly question, but i have to know. How do i set multiple
classpaths? i have jdk1.2pre2 running and want to do some stuff with
servlets and jdbc. the jdbc is fine for applets and applications but with
not woth servlets. i use 'javac -classpath /path/servlet.jar . this
didnot
Really 4 years? <>
<>
Peter Mount wrote:
> On Sat, 6 Nov 1999, John N. Alegre wrote:
>
> > Peter,
> >
> > I have no problem on my end. I have 4 years expeience with Server Side
> > Java. I want the most advanced JDBC driver/db combination. The question I am
> >
<>
-
On Sat, 6 Nov 1999, John N. Alegre wrote:
> Peter,
>
> I have no problem on my end. I have 4 years expeience with Server Side
> Java. I want the most advanced JDBC driver/db combination. The question I am
> rasing is which JDBC drier is more robust and closer to the JDBC 2.0 speck.
> Once I
Peter,
I have no problem on my end. I have 4 years expeience with Server Side
Java. I want the most advanced JDBC driver/db combination. The question I am
rasing is which JDBC drier is more robust and closer to the JDBC 2.0 speck.
Once I have a solid driver, there is no problem writing code
Thanks to you too,
Stick to whatever suits you...
gr. Eric
--- Jalaluddin Riaz <[EMAIL PROTECTED]> wrote:
> hi,
>thanks for help. i think i have got it sorted now. and
> i'm gonna stick to
> mysql, i've got used to it.
> thanks again.
>
>
>
>
> >I've been thru this.
> >
> >You go to
On Mon, 25 Oct 1999, John N. Alegre wrote:
> Has anyone else had this experience. I have been reluctant to move to
> PostgrSQL for reasons of complexity and speed.
Although I don't touch applets anymore, the problems with placing either
all of the classes into a single jar file, or extracting t
Has anyone else had this experience. I have been reluctant to move to
PostgrSQL for reasons of complexity and speed.
Is the JDBC support that much more advanced in PostgrSQL?
All comments welcome.
john
On 24-Oct-99 Eric vanberkel wrote:
> I've been thru this.
>
> You go to check you have the
I've been thru this.
You go to check you have the 1.2.2 driver and not the
1.2.1, which did not work on my prev2 JDK + latest mysql
Also for apps:
java -cp .:$CLASSPATH proggie
with a correct classpath set
in applets $CLASSPATH won't work.
You'll want to put into your html:
..
..
put the mm
How are you getting the driver loaded? Also, the driver manager tries to
discover the correct driver based on the URL you specify when you get a
connection. So be sure that your URL is correct.
Cynthia Jeness
Jalaluddin Riaz wrote:
> hi,
> I am a newbie to JDBC programming and am having
hi,
I am a newbie to JDBC programming and am having some problems. I am
using mysql rdbms and mm.mysql.jdbc-1.2 driver and have jdk1.2preV2
installed. the problem is everytime i try to run a prog. i get class not
found exception. the prog is not able to find the driver class files. i have
java.servlet is not in the base distributionYou need to go to javasoft
and download the JSWDK and then include the libs in there to compile your
app
Brian
On Fri, 8 Oct 1999, Don Hatch wrote:
> I'm new to java on Linux but have experience with programming
You dont have the JDSK classes in your classpath.
They can be downloaded from sun if you dont have them.
Add it in and things will work fine.
--shawn
Don Hatch wrote:
>
> I'm new to java on Linux but have experience with programming java on
> Windows. I'm having some problems compiling servlets
I'm new to java on Linux but have experience with programming java on
Windows. I'm having some problems compiling servlets. When I run javac on
simple servlets it complains saying that it can't find javax.servlet or
javax.servlet.http or Superclass HttpServlet. I'm using Debian 2.1 and
jdk1.2 H
Try calling update().
--Jeff
> "Bern Rewel L. Mutia" wrote:
>
> Hi,
>
> I'm new to Java so please bear with me.
>
> I am resizing the length of the array of String elements in a JList
> inside a JScrollPane, but repaint() does not update my UI.
>
> Help please...
>
> Burn
>
>
--
Jeff G
Hi,
I'm new to Java so please bear with me.
I am resizing the length of the array of String
elements in a JList inside a JScrollPane, but repaint() does not
update my UI.
Help please...
Burn
Bill & Martinah Smith wrote:
>
> I don't believe this is completely true. When using Java on Solaris, we were
> set up to use green threads because it required a bunch of OS patches to use
> java native threads. We ran into performance issues with green threads when
> we would spin off threads to
Yes .. we had the same experience too on Solaris. Native threads performed
much
better than green on a uni processor... Could be that the VM (which has to do
all the
work when using green threads) had some bugs while the OS stuff was much more
time tested and robust.
I also would like to
I don't believe this is completely true. When using Java on Solaris, we were
set up to use green threads because it required a bunch of OS patches to use
java native threads. We ran into performance issues with green threads when
we would spin off threads to do background work. We finally decided
Pere Serra wrote:
>
> I have an easy question:
> What's the difference between native threads and green theads?
> Which one is more eficient/stable?
>
(from blackdown:)
Native threads use the operating system to do the task switching.
Native threads are thus a benefit in multi-processor (SMP)
Like my compadres before me said, native threads run at the OS level, and
therefore can access multiple cpus. However, it is my understanding that
this is the only time native threads should be used. On single processor
systems, green threads are faster, and you aren't limited by any process
lim
Native threads are executed by the OS's native
libraries. Green threads are executed within the
Java Virtual Machine. Native threads are more
efficient, but green threads are *currently*
much more stable.
-Tom
Pere Serra wrote:
>
> I have an easy question:
> What's the dif
Native threads are O/S level purely. This would allow for parallel processing
and the like.
Green threads are "faked". The thread management is actually handled
by the VM, thus it cannot access things like multiple CPUs...
Brief, but true ;-)
Pere Serra wrote:
I have an easy question:
What's th
I have an easy question:
What's the difference between native threads and green theads?
Which one is more eficient/stable?
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PR
size.
- Original Message -
From: Nathan Meyers <[EMAIL PROTECTED]>
To: Mark Murphy <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Friday, June 11, 1999 5:15 AM
Subject: Re: Newbie question: What is a footprint ?
> Mark Murphy wrote:
> >
> > I have he
Mark Murphy wrote:
>
> I have heard this term used alot lately and was wondering if someone could
> explain to me what it is in reference to Java?
A footprint is occupied space. A desktop PC's footprint is the number of
square inches it takes up on your desk. An application's disk footprint
is t
I have heard this term used alot lately and was wondering if someone could
explain to me what it is in reference to Java?
Thanks in advance
-- Murph
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe"
Original message
Date: Sat, 05 Jun 1999 13:41:51 +0200
From: Marcel Ruff <[EMAIL PROTECTED]>
To: "Philip L. Butler" <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
Subject: RE: Newbie question Servlets on Linux
--
> I'd also l
> I'd also like to see comments from those who have installed/run all
> of the servlet stuff or have atempted it.
>
> Many thanks in advance !!
>
> Phil Butler
> [EMAIL PROTECTED]
Servlets are running without any problems on Linux.
The combination apache/jserv is very good,
using of apache/jrun
On Thu, 3 Jun 1999 10:11:41 -0400, Philip L. Butler wrote:
>Hi,
>
>I just joined the list this morning and have already seen lots of good info !!
>
>I am trying to bring up Java on a Slackware 2.0.33 system without X.
>My eventual goal is to install the JSDK (Java Servlet Dev. Kit) and
>mod_jse
Hi,
I just joined the list this morning and have already seen lots of good info !!
I am trying to bring up Java on a Slackware 2.0.33 system without X.
My eventual goal is to install the JSDK (Java Servlet Dev. Kit) and
mod_jserv to work with Apache. I have Apache installed and
configured.
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
> Problem: upon execution of a particular file in the installation process:
>
> jre -cp ./classes ./foobar
>
> I am informed that:
>
> Class not found ./foobar
You can't use the JRE to execute shell scripts. ./foobar will have to be
e
I apologize in advance if this is a stupid question, but I don't know where
else to turn. I've been working with RH5.x Linux for some time, but have
never worked with Java. I'm currently working with a vendor to port a network
analysis program from *true* Unix to Linux, so at least my intentions
On Mon, 23 Nov 1998, Matt Welsh wrote:
>
> You probably have Kaffe installed, which is a free Java Virtual Machine
> replacement.
>
the command
rpm -qf `which javac`
will confirm.
Cheers
John Summerfield
http://os2.ami.com.au/os2/ for OS/2 support.
Configuration, networking, combined IBM
Mike Song wrote:
>
> I installed RH Linux 5.2 and I found that 'javac', 'java' and 'appletviewer'
> are already there and I am able to compile and run simple java programs.
>
> Does this mean that I already have JDK installed?
Looks like it. "rpm" will tell you if they came from a Red Hat pack
You probably have Kaffe installed, which is a free Java Virtual Machine
replacement.
mdw
Mike Song <[EMAIL PROTECTED]> writes:
> Hello all,
>
>
> I installed RH Linux 5.2 and I found that 'javac', 'java' and
> 'appletviewer'
> are already there and I am able to compile and run simple java pr
Mike Song wrote:
>
> Hello all,
>
> I installed RH Linux 5.2 and I found that 'javac', 'java' and
> 'appletviewer'
> are already there and I am able to compile and run simple java programs.
>
> The question is:
> Does this mean that I already have JDK installed?
You sure do. Congratulations! ;
Hello all,
I installed RH Linux 5.2 and I found that 'javac', 'java' and
'appletviewer'
are already there and I am able to compile and run simple java programs.
The question is:
Does this mean that I already have JDK installed?
Thanks a lot
Mike
At 11:47 AM 10/29/98 -0700, you wrote:
>Hi all,
>I just installed the glibc verison of the blackdown JDK 1.1.6 and I am
>getting this error when trying to complile a simple program using javac.
>
>/usr/local/jdk116_v5/bin/../bin/i586/green_threads/java: error in loading
>shared libraries
>libXpm.s
On Thu, 29 Oct 1998 11:47:12 -0700, a wrote:
>Hi all,
>I just installed the glibc verison of the blackdown JDK 1.1.6 and I am
>getting this error when trying to complile a simple program using javac.
>
>/usr/local/jdk116_v5/bin/../bin/i586/green_threads/java: error in loading
>shared libraries
>l
Hi all,
I just installed the glibc verison of the blackdown JDK 1.1.6 and I am
getting this error when trying to complile a simple program using javac.
/usr/local/jdk116_v5/bin/../bin/i586/green_threads/java: error in loading
shared libraries
libXpm.so.4: cannot open shared object file: No such f
Hi again .. it turns out that SuSE 5.3 has an RPM for jdk1.1.6 on one of
its CD's (which works). The difference appears to be that there's a line:
export LD_PRELOAD=/lib/libdl.so.1
Setting this makes the 1.1.6 which I downloaded work as well. Thanks to
everyone for the quick response.
-rj
Hi everyone,
I'm trying to move some of our Java apps to run on linux boxes. I
downloaded jdk1.1.6 and installed it (untarred in /usr/local and set my
path to find /usr/local/jdk1.1.6/bin).
Well.. I was able to compile a hello world java app. So I believe I'm
correctly installed. But any c
what is this kaffe javac. why is it there in /usr/bin ?
sorry for such a silly question.
kiran
At 03:57 PM 5/25/98 +0200, you wrote:
>Stephen Wynne wrote:
>
>> Yay, we're running Kaffe! Could you make sure that $JAVA_HOME/bin is
>> *ahead* of anything in your $PATH that looks like it has Kaffe
Stephen Wynne wrote:
> Yay, we're running Kaffe! Could you make sure that $JAVA_HOME/bin is
> *ahead* of anything in your $PATH that looks like it has Kaffe in it
> on your system, such as /usr/bin?
>
You are right. The javac which was giving the problem was
/usr/bin/javac, that is the kaffe ja
I would suspect that either you did a typo and actually typed:
java HelloWorld.java
or that your javac is linked to java by mistake. Good Luck!
-Steve
At 03:56 PM 5/23/98 +0200, Daniele Lugli wrote:
>I recently downloaded jdk1.1.5v7 and untarred it into /usr/jdk1.1.5.
>My CLASSPATH is .:/usr/
I recently downloaded jdk1.1.5v7 and untarred it into /usr/jdk1.1.5.
My CLASSPATH is .:/usr/jdk1.1.5/lib/classes.zip. JAVA_HOME is
/usr/jdk1.1.5, the same as JDK_HOME.
Then I wrote a wonderful HelloWorld.java (I won't explain you what it is
doing) and tried
javac HelloWorld.java
getting:
...
F
50 matches
Mail list logo