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:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Urgent ..please...

 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Here's a piece of code....
String[] libSelected;
String libName="";
String libList = null;
Vector vv=new Vector();
libSelected = request.getParameterValues("check");
if(libSelected !=null)
{
for(int i=0; i<libSelected.length; i++)
{
libName = libName + " " +libSelected[i];
}
}
vv.addElement(libName);
now i would like to write/save the content of vv to a file,say, file1.txt..
any help will be greatly appreciated..thanks in advance
-bris

 
Ranch Hand
Posts: 5040
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator

Pl don't post duplicate msgs.
I will close this thread.
I think your other post has
a more appropriate subject line.
If its urgent, say so in the body
of the post not in the subject line.
IMO, dosn't look very professional.
Thanks for your cooperation.
- satya
 
    Bookmark Topic Watch Topic
  • New Topic