• 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:
  • 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

rundll problem

 
Ranch Hand
Posts: 35
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hello every one
i am having a small problem
in my java program i need to open a webpage
i used the rundll command as shown below
rundll32 url.dll,FileProtocolHandler www.javaranch.com
while running this command a browser window opens up when there is no browser open on the desktop. but the problem is if there is a explorer window already and then u run the command , instead of opening in a new window the site is opened in the existing window itself.
what i wanted was to open the window as a new one
can any one suggest me in this
i searched with google and came empty handed in this particular issue
hoping for the reply
Naren
 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well Narendran
Try
Runtime.getRuntime().exec("Iexplore [url=http://www.javaranch.com");]http://www.javaranch.com");[/url]
It Will open a new window with given url ..
Atleast opens on my computer.
 
reply
    Bookmark Topic Watch Topic
  • New Topic