Opening file in internet explorer

hi
i have a html file which is in the same directory as the class file
from which i have to call the file. i am using
Runtime r=Runtime.getRuntime();
Proces p=r.exec("path<internet explorer> path<file.htm>");
but i want that the file to be executed without giving the absolute path
i.e the class file and html file may reside in any drive and get executed.how to do that without giving absolute paths?

In order to not affect other things, just open AR9 before you start IE8. You will likely get comments about AR and AA not being compatible and that is an issue you have to be careful with. Also, note that if you delete either, you will have to repair the other. They will work together, but issues like you are having will continue to be an issue.

Similar Messages

  • Will not open anymore, asking is I want to open file in Internet Explorer.

    I was upgrading my firefox to 5.0 and after that my comuter told me a had a virus threat. I pressed: to put the treat in the "vault" for further dicition, and it starded to remove the threat instead. When it was done and I tried to start firefox again it didn't work. I tried to download it again but it won't start it. It keeps asking me if I want to open the file in "Internet explorer". even if I go to "all progams" and click on it there it wont open. What can I do to make it work agan??? Do I have to delete it and reinstall everything??? The window I had open is still working but I cannot open another window. I really like firefox so I want to fix it!

    See:
    *http://kb.mozillazine.org/Firefox_crashes
    *https://support.mozilla.com/kb/Firefox+crashes
    If you have submitted Breakpad crash reports then post the IDs of one or more Breakpad crash reports (bp-xxxxxxxx-xxxxxxxxx-xxxx-xxxxxxxxxxxx).
    You can find the IDs of the submitted crash reports on the <i>about:crashes</i> page.
    You can open the <b>about:crashes</b> page via the location bar, like you open a website.
    See:
    *http://kb.mozillazine.org/Breakpad (Mozilla Crash Reporter)
    *https://support.mozilla.com/kb/Mozilla+Crash+Reporter
    *https://developer.mozilla.org/en/How_to_get_a_stacktrace_for_a_bug_report

  • There,are,restrictions,to,opening,PDF,files,on,an,Pad,or,Android,Device,that,will,open,in, Microsoft,Internet,Explorer,desktop,or,laptop.,If,I,bought,a,Windows,8.1,tablet,and,had,Ad obe,reader,installed,would,I,then,be,able,to,open,the,secure,document,wit

    There,are,restrictions,to,opening,PDF,files,on,an,iPad,or,Android,Device,that,will,open,in ,Microsoft,Internet,Explorer,desktop,or,laptop.,If,I,bought,a,Windows,8.1,tablet,and,had,A dobe,reader,installed,would,I,then,be,able,to,open,the,secure,document,with,Internet,Explo rer?

    What's,with,the,commas?
    If you have a tablet that runs full Windows 8 - not Windows 8 RT, which is limited.
    And if you install the full Adobe Reader for Windows, not the special Adobe Reader Touch for Windows 8.
    Then you will have the same features as a desktop.
    Unless they can't be accessed in touch mode, since it isn't a touch app.

  • Unable to open pdf files using Internet Explorer and Adobe 9.1

    We are unable to open any/all pdf files in Internet Explorer 6 or 7 using Adobe Reader 9.1 on Windows XP SP2.
    The error message is that IE has a problem and sorry for the inconvenience.
    Clicking "OK" closes IE.
    We did not have any issue with Adobe Reader 8.1.
    What we did to date:
    1. Uninstall Adobe Reader 9.1
    2. Run Windows Clean Utility to remove any remnant of Adobe Reader 8
    3. Re-install Adobe Reader 9.1
    Any other suggestions?
    Need to have this upgrade.

    I'm having a similar issue. Prior to upgrading to Acrobat 9.1 I was able to view PDFs from IE 6. No longer. Instead I get a message: "Error opening document. File cannot be found."
    Help?

  • Unable to open PDF files in Internet Explorer

    Hello,
    One of our users has a problem with opening PDF files in Internet Explorer.
    Translation:
    Adobe PDF-document
    There is a problem with Adobe Acrobat/Reader. Close Adobe Acrobat/Read and try again.
    The user is using Adobe Acrobat 8 Standard in combination with Windows XP and Internet Explorer 6. I reinstalled Adobe Acrobat (under an administrator account), deleted the local user profile and the problem is still there.
    Does anyone have an idea about this? The error message doesn't really say what is wrong. Adobe Reader is not installed.

    What exactly means "unable"?  Do you see a little x in a box on the top left of IE11?  If so, this may be the solution: http://support.microsoft.com/kb/2716529

  • Inquiry about opening any file with internet explorer

    Dear all,
    i am opening any file with internet explorer on the client machine.but i want to open it as READ-ONLY. so is there any parameter i should add to the command.
    the command i am using is :
    client_host('"\Program Files\Internet Explorer\iexplore.exe " "'||v_file_name||'"'; );
    Thanks in advance

    Hi,
    I don't think there is a way to open a file as read only using Client_Host. But i can give you another suggestion. Change the permission of the file to readonly (may be using chmod command) before opening the file in the browser.
    client_host('chmod -w '||v_file_name);Regards,
    Arun

  • Opening a .tif or .tiff file in Internet Explorer using Quicktime in Window

    How do you open a .tif or .tiff file within Internet Explorer using Quicktime in Windows 7?
    Thank you for looking.

    Open the QuickTime control panel to Browser>Mime Settings>Images-Still image files and select TIFF image then click-ok apply ok. You want to do this without the browser running. If this doesn't help you may want to post a website with the TIFF, for myself or others to try

  • Opening Teststand XML file in Internet Explorer

    I have TestStand 4.1 installed on my PC.
    The test station PC has TestStand 4.0 installed.
    When I open the XML report file in Internet Explorer on my PC, I just get run-on text.
    What am I doing wrong?

    What do you mean with "run-on text"?
    If you refer to the XML content (including the tags, "raw XML"), then the Internet Explorer fails to display the content of the XML using the style sheet.
    Another option is that you configured the Internet Explorer to always display the raw content instead of using the style sheet.
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Downloaded file from Firefox but it is not opening in the internet explorer

    1. I have java script file where it will download the content to a xml file . Below is the java script code
    // "data:application/octet-stream," + encodeURIComponent(content);
    var dataURL = "data:application/octet-stream," + encodeURIComponent(textToEncode);
    window.location.assign(dataURL); // To change the current page
    2. when we are trying to open downloaded xml file in internet explorer through the javascript it is throwing Type Error : Access denied . But, when we open the xml in notepad++ and re- save it is able to open in internet explorer.
    below is java script code to open the xml file -
    if (window.ActiveXObject) {
    xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
    xmlDoc.async = false;
    xmlDoc.load(fname); // fname refers to the file path where we downloaded
    return (xmlDoc);
    i am not able to resolve the problem .can you please help me on this . Thanks in Advance

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Cannot open pdf in Internet explorer with a specific site

    Hello,
    I'm running adobe reader 10.1.4 on XenApp 6.5 servers.
    On a specific site some users cannot open pdf in internet explorer. I need to delete there terminal server's profile to have it running fine again.
    My question is; wich file or folder can i delete in user's profile to erase adobe settings?
    Thanks a lot for your help and sorry for my english.

    Hello,
    I forgot to test this solution   but i've tried it this morning without success.

  • Opening pdf in Internet Explorer on Windows

    I attempt to open a pdf file in Internet Explorer and get the following message:
    "The Adobe Acrobat/Reader that is running can not be used to view PDF files in a web browser. Plesx exit Adobe Acrobat/Reader and try again".
    Acrobat Reader is then launched and the pdf opens.
    Is there any way I can view directly in the web browser? I can do this in Firefox on both Windows and Linux.
    (Also I've had to create a new screen Ziggy Short as Ben Short has been disabled on forums for some reason, but Ben Short and Ziggy Short are one and the same).
    Thanks

    What's,with,the,commas?
    If you have a tablet that runs full Windows 8 - not Windows 8 RT, which is limited.
    And if you install the full Adobe Reader for Windows, not the special Adobe Reader Touch for Windows 8.
    Then you will have the same features as a desktop.
    Unless they can't be accessed in touch mode, since it isn't a touch app.

  • Open file in internet expolorer

    I have created a jbutton, and from this i want to open a file in internet exploror. ie, c:\test.html
    how would i go about doing this

    ok i have created it compiles fine, what i want to do is open a saved file in internet explorer. code used is
              JButton tViewButton = new JButton("VIEW");
              tViewButton.addActionListener
                   new ActionListener()
                        public void actionPerformed(ActionEvent e)
                             try 
                                  String searchStr = JOptionPane.showInputDialog("Please enter the path and file name of the saved file");
                                  Runtime.getRuntime().exec("c:/program files/internet explorer/iexplore.exe" +searchStr);
                                  JOptionPane.showMessageDialog(null,"Opened sucessfully",
                                       "Opened sucessfully",JOptionPane.INFORMATION_MESSAGE);
                             catch (IOException ex)
                                  ex.printStackTrace();
                   );

  • When I install adobe acrobat XI PRO, it converts everything on my computer to an adobe icon, and when I try to open it, it open adobe acrobat. For example, I can't open word, excel, internet explorer, or any other document or program because it thinks its

    When I install adobe acrobat XI PRO, it converts everything on my computer to an adobe icon, and when I try to open it, it open adobe acrobat. For example, I can't open word, excel, internet explorer, or any other document or program because it thinks its acrobat.

    Hi Kate,
    Please refer to this KB doc. for the solution Application, file icons change to Acrobat/Reader icon
    Let me know if the issue persist.
    Regards,
    Aadesh

  • Can't exit pdf file in internet explorer.

    When I open a pdf file in internet explorer, I an unable to exit the pdf file.  The only way I can get out of it is by shutting down internet explorer.  I am using internet explorer 11 with windows 7.  Is there a way to resolve this issue??

    Are you trying to open a PDF in a 64-bit version of Internet Explorer?
    If you don't know how to see the version - In Internet Explorer, choose Help > About Internet Explorer. (In some versions of Internet Explorer, select the Question mark in the upper-right corner to select About Internet Explorer).
    To switch to the 32-bit Internet Explorer, first exit 64-bit Internet Explorer. Then double-click the program icon for the 32-bit version:  C:\Program Files (x86)\Internet Explorer\iexplore.exe

  • What does this message mean...Program: C:\Program Files (x86)\Internet Explore\iexplore.exe

    everytime i log onto the internet this message appears
    Program: C:\Program Files (x86)\Internet Explore\iexplore.exe
    AND THEN AN INTERNET HAS STOPPED WORKING BOX APPEAR AND IT SHUTS OFF
    WHAT DOES IT MEAN

    everytime i log onto the internet this message appears
    Program: C:\Program Files (x86)\Internet Explore\iexplore.exe
    AND THEN AN INTERNET HAS STOPPED WORKING BOX APPEAR AND IT SHUTS OFF
    WHAT DOES IT MEAN

Maybe you are looking for

  • Photoshop Elements 11 Editor has stopped working message

    Installed PSE 11. OS is Win 7.  Worked ok a short time then got message "PSE 11 stopped working".  I try to open file from Orginizer into Expert Editor and only get a blank screen now.  Tried all three ways of opening into Editor.  (Works ok in PSE 9

  • Reg errors in webdynpro runtime

    hi every im new to this webdynrpo n this is my first post my problem when im tying to run the Code Samples in SDN and some Weblogs n SDN Best Practices im getting the following errors.  So please guide me what steps to be taken to run the following a

  • Problem: Deploying application in OC4J

    HELP ME!!! I'm deploy j2ee application which is a simple SessionBean, to my OC4J container (for example, OC4J_my) Then I try to start this application via JDeveloper903. Application fails with next error: javax.naming.NamingException: Lookup error: j

  • Clock radio won't recognize ipod touch when docked

    I bought my daughter a Sony Clock Radio that you can attach an Ipod touch too, but for some reason it won't play the music through the radio.  At first I thought it was the radio, but then docked my sons' Ipod touch, and it works.  Trying to figure o

  • How to refresh the table control

    hi experts, i used bapi to update the changes made in data of table control in modulepool. like i <b>changed serial number and short text of equipment</b> . <b>now when i simultaneously go for transaction ie02  i,e equipment change in another session