I guess you are asking why you can't do this: The answer is because protected has weaker access than public. ... method. ... that super class' method.So what...
31634
ashley_a_j
Sep 13, 2008 12:16 am
Hi All, I am new to this group. I have a problem. I need to construct an XML with the contents of a database row, But the XML should be less than 500MB. The...
31633
kannan kannan
kannan_kt81
Sep 13, 2008 12:16 am
As I know we can increase the visibility of super class method in our overrided sub class method. Â If super calss have public method, and subclass have the...
31632
mark
anthonymorada
Sep 13, 2008 12:15 am
i found this segment from a code public class MyClass <Something> { } I just want to ask, what does "<Something>" do in the code? What do you call that thing? ...
31631
Palakollu kumar
tskumar83
Sep 13, 2008 12:15 am
HI ,   Generally interfaces contains abstract methods,but marker interfaces does not.Marker interface means its just mark the classes which implement...
31630
rajakumar rajakumar
raja_kumar_02
Sep 13, 2008 12:15 am
Hi All , Is the any way to get information about which driver(type 1 , type 2 , type 3, type 4).? I am using Oracle 9i, and knew Type-4 Used . can i...
31629
Java Guy
mmjavaguy
Sep 13, 2008 12:15 am
First place to look: the tutorials on java.sun.com . -Java Guy...
31628
Java Guy
mmjavaguy
Sep 13, 2008 12:15 am
Read the tutorials at java.sun.com . There is a printf () equivalent in Java; scanf is a different story, and you may have to get creative. There is no such...
31627
manjunath prabhu
manjuprabhuv
Sep 13, 2008 12:15 am
Hi All, Â Â Â Â Â Â Â Â My Question is, Â Â Â Â Â Â Â Â Â Using JAVA I/O i created a new JSP file (in the web content folder) Â Â Â Â Â Â Â Â Can a this...
31626
gopal kanjolia
gopal_kanjol...
Sep 13, 2008 12:15 am
... import javax.mail.*; import javax.activation.*; import javax.mail.internet.*; import java.util.Properties; import java.io.*; public class composeAtt { ...
31625
Elwood Lacap
elwood_lacap...
Sep 13, 2008 12:15 am
i want to know how to store a value in a variable without assigning a value and also to store a string in a variable... example: int num = 1; ( i dont...
31624
Chip Dunning
chipdunning
Sep 13, 2008 12:14 am
Google for Thinking in Java (Bruce Eckel) - it is free as a PDF. It is the book that I used the most to make the transition from C++ to Java. Chip ... -- "The...
31623
srikanth minchu
srikanthminchu
Sep 13, 2008 12:14 am
Hi,This is srikanthi installed the jdk version on my system 1.5.0and i installed the Eclipse IDE alsobut while clicking the Eclipse IDE icon i am getting some...
31622
jawad.abbassi
Sep 13, 2008 12:14 am
Hello everybody, how to get the path of my web application, for example im working on eclipse and the name of my web application is test which is in the...
31621
kannam_kk
Sep 13, 2008 12:14 am
hi, hidden form field and URL Rewriting are Session Tracking Techniques if Cookies are disabled on browser the alternative is URL Rewriting. 1) on first page...
31620
arul ananthi
arulananthis
Sep 13, 2008 12:13 am
use BufferedReader and InputStream Reader BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); br.readLine() ... -- Regards, Arul ananthi ...
31619
Hasan Muhammad Kafi
kafi_cse05
Sep 9, 2008 7:02 am
... Actually,what do you want to know?...
31618
praveen likki
java_id_4me
Sep 9, 2008 4:44 am
The only drawback of doing that is calling methods via their interface name is slightly slower than calling them via their abstract class name.... is that true...
31617
Oscar Mauricio
oscar_garcia...
Sep 9, 2008 3:57 am
Hola La clase String te permite convertir una cadea a bytes y viceversa. No se si esto te sirva de algo. Saludos Oscar Mauricio ... From: me4u_pathania...
31616
Aboda Abdrhim
javanesseman...
Sep 9, 2008 3:57 am
1. It doesn't matter what data store type you use. One of the first steps in designing an application is to decide on the data store. It used to be that every...
31615
Aboda Abdrhim
javanesseman...
Sep 9, 2008 3:57 am
The Name The Java- prefix suggests that JavaScript is somehow related to Java, that it is a subset or less capable version of Java. It seems that the name was...
31614
j ramesh
jaligama_ramesh
Sep 9, 2008 3:56 am
Dear sirisha, Â Marker interface is also called as tagged interface and it doesn't contain any methods but we can provide a class which is implementing this...
31613
Hari kumar
hari7447
Sep 9, 2008 3:55 am
Hi, Thats really interesting.... Sounds Good ... Regards Hari. D ... From: arul ananthi <arulananthi@...> To: Java_Official@yahoogroups.com Sent: Friday,...
31612
wsxwinter
Sep 9, 2008 3:55 am
1) Marker interface used to tell JVM how to process it's offspring 2) 1>:One class can extends ONE abstract class; One class can implements More than ONE...
31611
Elwood Lacap
elwood_lacap...
Sep 9, 2008 3:55 am
thsi is not a homework im new to java programming and i want to adopt java...b4 i use C++ programming plsss.. help me thank u so much ... From: Java Guy...
31610
u06116
Sep 9, 2008 3:55 am
Hello I am a new user and i want ur help. I want to learn Java on my own. Can you guys help me from where should i start or which book should i consult. I have...
31609
rajesh ranga
indorajesh2000
Sep 9, 2008 3:55 am
Hi guys,   The importance of Load-on-startup is if we want to call the servet while STARTIING  the server that will be mapped to the load-on-startup in...
31608
talluri venkat
talluri_venk...
Sep 9, 2008 3:55 am
HiThis will clarifies your doubt. I think so. When To Use Interfaces An interface allows somebody to start from scratch to implement your interface or...
31607
synergest_mark
Sep 9, 2008 3:55 am
i cannot input an character and string in the java running program give me a running code regarding my problem plzzzzzzzzzzzzzz plzzzzzzzzzzzzzz...
31606
Chip Dunning
chipdunning
Sep 9, 2008 3:55 am
Convert the string into bytes - using either ASCII or UTF8 - then back again. Chip ... -- "The reason the mainstream is considered a stream is because it's so ...