Raveendran Hs

Greenhorn
+ Follow
since Feb 05, 2010
Raveendran likes ...
Eclipse IDE Java Ubuntu
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Raveendran Hs

In java web application while storing the date into a database and rendering from the database do we need to convert the date in to UTC format

in DB i have the datefield datatype as datetime

The problem i am getting is the date stored in to the DB properly but while rendering its giving one day lesser than the current date if the server or db time zone is different.
12 years ago
I have a two radio button in the JSP
I need to pass the radio button attribute checked=true from the Java servlet to JSP
How can achieve this
12 years ago
IE browser is not displaying the Chinese Character properly for a JSP page but it works properly on rest of the browsers
12 years ago
JSP
When i am trying to build my project in IntelliJ IDEA 10.5 i am getting an ant error saying that
"javax.xml.parsers.FactoryConfigurationError: Provider org.apache.xerces.jaxp.DocumentBuilderFactoryImpl not found"
but building the same project in IntelliJ IDEA 9.0 it works fine.

12 years ago
Why Method overriding is not decided at compile time?
What is the necessary to decide at run time only?
12 years ago
What is the best and efficient way to count the number of times the given keyword appeared in the huge text file.
13 years ago
Is it possible to write the constructor inside the static block of code.
13 years ago
ClassLoader, is required to register itself with the DriverManager (using a static initialisation block) .

I not able to understand this part. register means what?




How does DriverManager establishes the connection with the DB
i.e. DriverManager is from java.sql package how does it get the services from the above loaded driver class file

Can any one please tell me in detail.
What is the main difference between Serialization and Externalization
13 years ago
Which is the efficient algorithm to find the occurrence of a given string in a given large text file.
13 years ago



for the above code i am getting below saying

Cannot refer to a non-final variable x inside an inner class defined in a different method



Q: why inner class method is not able to refer non final variable
13 years ago
Q1: When One Thread holding Static lock(Class lock) on a Class then is it possible for another Thread to acquire Instance lock of this class
Q2: When One Thread holding the Instance lock then is it possible for another Thread to acquire Static lock(Class lock) on this class

Rob Prime wrote:It appears so.



No its not like that.
I know only how to query the class using a reflection API to get the information about the class but i don't know how to change the behavior of an object at run time using reflection API.
Thats why i asked this question.

13 years ago