Search the web
Sign In
New User? Sign Up
Java_Official · Java SE . EE . ME . AJAX . Web services
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 31824 - 31853 of 32213   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
31824
I imported an image named symbol.jpg to my package and i can't figure out how to use it. I tried using Image img = new Image(new File("symbol.jpg"); but that...
srp333
Offline Send Email
Mar 3, 2009
12:12 am
31825
hi all friends i'm new in java EE i want to have some exemple for java EE and docs about it if u can to hellp me send me a site web where can i downlod it thx...
mafia123ma
Offline Send Email
Mar 3, 2009
12:13 am
31826
The best site to get started is on http://java.sun.com . They have lots of tutorials. -Java Guy...
Java Guy
mmjavaguy
Offline Send Email
Mar 3, 2009
4:28 pm
31827
... check the context path you used,maybe you used an illegal path of the imported image...
chencheng
didxga
Offline Send Email
Mar 3, 2009
4:28 pm
31828
I'm a senior in high school and I chose to do programming as my topic for my senior capstone. For my project I plan to create a simple application using java...
zelda_maniacs1178
zelda_maniac...
Offline
Mar 3, 2009
11:13 pm
31829
... what path should I set the image to if it is imported into the package, how do i do that? ... here is the code i am using to show the image Image img; ...
srp333
Offline Send Email
Mar 3, 2009
11:13 pm
31830
Hi bosses, I am new on java. I want to connect java with mysql, for the reason I install jdk6, jre6, mysql, Jcreator and also Netbeans 6.5. I copy the mysql...
Arif Uddin
arifrhb
Offline Send Email
Mar 3, 2009
11:14 pm
31831
Hello there, What IDE exactly did you use ?, if you are using Netbeans, you need to add mysql connector into your project library first. Here a simple code, I...
Gilang Pramuhendra
a57r4l
Online Now Send Email
Mar 4, 2009
7:38 pm
31832
Hi, I sharing sample code to you. Try it... class DatabaseConn{ Connection conn = null; Statement stmt = null; ResultSet rs = null; public void query(){ try { ...
pavan.venkatt
pavan456@...
Send Email
Mar 4, 2009
7:38 pm
31833
Indeed, java.sun.com has tons of useful stuff. http://java.sun.com/blueprints/guidelines/designing_enterprise_applications_2e/ Personally I found this...
nexus500
Offline Send Email
Mar 4, 2009
7:38 pm
31834
for good examples in java you can refer java2s.com ... [Non-text portions of this message have been removed]...
Rajnikant joshi
rajnikantjos...
Online Now Send Email
Mar 4, 2009
7:38 pm
31835
Hi Everybody, Here am struggle with jsp - oracle 10g JDBC Connection. Anybody knows that reply me. Thanx in Advance kglnsify...
Kumba.gopinath.Lakshm...
kglnsify
Offline Send Email
Mar 4, 2009
7:38 pm
31836
Dear Friends, I want to build a web site but my biggest problem is that it doesn't open quickly. I mean it is not like yahoo or google that when you open type...
resetsm
Offline Send Email
Mar 4, 2009
7:38 pm
31837
Hi, The language the site uses is only one factor. Actually, it is one of the last you should worry regarding speed. You can have high speed websites using...
Rodrigo Coin Curvo
rodrigoccurvo
Offline Send Email
Mar 4, 2009
9:16 pm
31838
Here is my program which will help you to load image.     /**  * @(#)ImageViewer.java  *  *  * @author Masududul Haque  * @version 1.00 2008/2/2  */ /*...
Masudul Haque
masud_0504014
Offline Send Email
Mar 6, 2009
6:45 pm
31839
ALL MEMBERS WELLCOME ALL MEMBERS, I AM NEW MEMBER OF YOUR GROUP AND JOINED TODAY, HOPE THAT WE ALL WILL BE HELP TO EACH OTHER WITH OPEN HEART. THANK YOU. ANWAR...
anwar959
Offline Send Email
Mar 9, 2009
4:30 pm
31840
Hi Gurus,     I have a question.   Please see the following code:     class A   {  int x=5;   }     class B extends A   {  int x=6;   }       ...
Chooti Baba
nibm963
Offline Send Email
Mar 16, 2009
4:42 pm
31841
Dear all, What exactly mean by Object, Instance and Reference? Can you tell me, any one. Thanks & Regards Sreekanth...
Srikanth
sreekanth_aug16
Offline Send Email
Mar 16, 2009
4:42 pm
31842
Hi, Srikanth. ... Well, that's the kind of thing you can find at the first result on Google. Nevertheless, I'll try to give you a quick answer. A x = new B(); ...
Rodrigo Coin Curvo
rodrigoccurvo
Offline Send Email
Mar 16, 2009
8:35 pm
31843
Hi, Chooti. ... Well, good question. Let's see what's going on: when you do Covtest t = new SubCovtest(); You have a reference of type Covtest and an object...
Rodrigo Coin Curvo
rodrigoccurvo
Offline Send Email
Mar 16, 2009
8:36 pm
31844
Dear Rodrigo, Here i'm inserting one method in both classes A and B. That is display(), which will show x value. As per you Its not showing 5, instead its...
sreekanth gundagoni
sreekanth_aug16
Offline Send Email
Mar 17, 2009
7:35 pm
31845
What is an instance? Can you give me each with example?...
Srikanth
sreekanth_aug16
Offline Send Email
Mar 17, 2009
7:36 pm
31846
An instance is simply an "example", an "specimen" of a class. When you create an object, that object is an instance (an example, an specimen) of that class. ...
Rodrigo Coin Curvo
rodrigoccurvo
Offline Send Email
Mar 18, 2009
6:50 pm
31847
Hi, sreekanth. On Tue, Mar 17, 2009 at 02:33, sreekanth gundagoni ... That's because of method overriding. The original code and your modified code has similar...
Rodrigo Coin Curvo
rodrigoccurvo
Offline Send Email
Mar 18, 2009
6:50 pm
31848
hi shrikant, diff bet object anf the REference is that object are created on heap and where all instabce variable/method are present and reference hold the...
mayurkumar99
Offline
Mar 18, 2009
6:51 pm
31849
Hi, since you are calling the 'display()' method, 'Dynamic Method Binding' applies here and the display of class B is called. Now in class B, the variable x...
Tanvir Faraj
tanvir_faraj
Offline Send Email
Mar 18, 2009
6:51 pm
31850
Fascinating problem. This is my take on Rodrigo's example. class A { int x=5; public void display() { System.out.println( "x value from class A : " + x); } } ...
puckos_soninlaw
Offline Send Email
Mar 19, 2009
5:04 pm
31851
Then, why it is not happening with variable x and happening for method display()? Can you give me clear idea?...
Srikanth
sreekanth_aug16
Offline Send Email
Mar 19, 2009
5:04 pm
31852
Because for variable x it uses the type of the reference, A. For the overridden method, as someone said, it is a dynamic binding, where the method called is...
Rodrigo Coin Curvo
rodrigoccurvo
Offline Send Email
Mar 19, 2009
8:46 pm
31853
Alan Williamson, a leading authority on cloud computing, gives an astute interview ...
zorry11111111
Offline
Mar 20, 2009
6:40 pm
Messages 31824 - 31853 of 32213   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help