• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Regarding HttpSession

 
Ranch Hand
Posts: 166
1
jQuery Eclipse IDE
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all !
I got confused with set and get attributes in HttpSession interface. Please see the below attached program:

Here its working fine but if i change date to date1 in getAttribute its showing error but if i write as
Date date=new Date(); then if i change date to date1 in getAttribute its not showing error . Why so ?

Thanks & Regards
Kori Swapna Latha.
 
Ranch Hand
Posts: 105
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Latha,

Before you post the java code , use code tag. Because it is used to easy view your code.
 
Sheriff
Posts: 22849
132
Eclipse IDE Spring Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Do you mean if you change line 34 from date = new Date(); to Date date = new Date();? You're then trying to declare a new variable with the same name as an existing variable (the one you declare on line 29).
 
Swapna latha
Ranch Hand
Posts: 166
1
jQuery Eclipse IDE
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


if i write


this type of code its accepting but if i put



its giving an error why So ?
 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


Date date1=(Date)hs.getAttribute("date");
if(date1!=null)\{
.........
}
date=new Date();
..............
................

its giving an error why So ?



You have created the date1 variable and assigning the session date object to it.

But in the next line you are creating a new date object and assiging to the "date" variable but the variable is not even created.
Try Date date = new Date();
 
reply
    Bookmark Topic Watch Topic
  • New Topic