Download file servlet problem

hello
i have a file stored in a byte[] form now i am using a servlet call for a link it works fine
i get byte[] from database no i want that instead of making a file i can use this byte[] for the user as a file
in short i have a link which calls a servlet it get byte[] from database how can i use this for user to get file as download file with out writing to server as file i just want these bytes to flush out??
advance thanks
Shakeel abbas

thanks BALUSC
the problem is solved as
ServletOutputStream op = response.getOutputStream();
                    int length = 0;
                    byte[] bbuf = new byte[invoice.getInvoiceFile().length];
                    ByteArrayInputStream arrayInputStream = new ByteArrayInputStream(invoice.getInvoiceFile());
                    DataInputStream in = new DataInputStream(arrayInputStream);
                    while ((in != null) && ((length = in.read(bbuf)) != -1)) {
                         op.write(bbuf, 0, length);
                    }

Similar Messages

  • Download file servlet

    Hi, I have a servlet that downloads files. I was able to set the default download filename with the following code:
    response.setHeader("Content-Disposition", "attachment; filename="+downloadName);
    Is it posible to specify the default directory to save the file ? I mean is there any way to tell the browser to open the save dialog with a defaul directory selected?
    Thanks in advance

    Hi, I have a servlet that downloads files. I was able
    to set the default download filename with the
    following code:
    response.setHeader("Content-Disposition",
    "attachment; filename="+downloadName);
    Is it posible to specify the default directory to
    save the file ? I mean is there any way to tell the
    browser to open the save dialog with a defaul
    directory selected?
    Thanks in advanceNo.
    The server knows nothing about the browser's operating system, and therefore can't specify a path. What does C:\Documents and Settings\Current User\Desktop mean to a macintosh or a *nix machine?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Downloading File/Save Problem....Help!!!!

    Hello All,
    I have written a code to download a Text file from Server to Local Disk.But the problem
    is that when i click a Button in the JSP page through which the downloading of file is
    done,opens a Dialouge Box with the "Save To Disk " option selected.when i go for the Save
    option the Text Field shows me a Wrong Filename("downloadFile.htm")....which is not the
    File i want Download.I want to Download "1003-3.txt"....
    Also when i go for the "OPEN" option and click on "OK" the Dialouge Box Opens again
    with the "Save To Disk" option selected,when i click on "OK" the Text Field of the
    Dialouge Box Shows the CORRECT Filename("1003-3.txt").....when i click OK the File
    gets DOWNLOADED but with "NO CONTENTS".....
    The snippet of code is .....
    public HttpServletResponse doDownloadFile(HttpServletRequest req,HttpServletResponse res)
              throws ServletException,IOException {
              String fname = "1003-3.txt";
              res.setContentType("application/binary");
              res.setHeader("Content-Disposition","attachment; filename=\""+fname+"\";");
              ServletOutputStream stream = null;
              try {
                   stream = res.getOutputStream();
                   BufferedInputStream bif = new BufferedInputStream(new FileInputStream(fname));
                   int data;
                   while(( data = bif.read()) != -1) {
                        stream.write(data);
                        stream.flush();                    
                   bif.close();
                   stream.close();
                   return res;
                   } catch(Exception e) {
                   finally {
                   if (stream != null)
                   stream.close();
                   return res;
    Can Anybody Help me out with the problem....Please it is URGENT!!!!!!
    Thanks a MILLION in Advance

    Hello All,
    I am using the Code,as below, to Download a Text File from a particular
    Directory on the Server to any where the user need to download it through the Dialouge box...
    But what i Really want to achieve is that the user should not be asked for an Dialouge box, instead it
    should Download the Text file directly to "Desktop"(By Default)...
    Is there a way to do so...if yes can anybody help me out with the solution...
    <Code>
    public HttpServletResponse doDownloadFile(HttpServletRequest req,HttpServletResponse res)throws ServletException,IOException {
    ServletOutputStream stream = null;          
    res.setContentType("application/binary");
    String fname1 = req.getParameter("BusinessId");
    String fname2 = req.getParameter("AccountUserId");
    String fname =fname1+"-"+fname2+".txt";
    res.setHeader("Content-Disposition","inline; filename=\""+fname+"\";");
    BufferedInputStream bif = null;          
    try {
    bif = new BufferedInputStream(new FileInputStream("C:/ABCD/download/XYZ/"+fname));               
    stream = res.getOutputStream();
    byte [] buf = new byte[20480];
    int data;
    while(( data = bif.read(buf,0,20480)) != -1) {
    stream.write(buf, 0, data);
    stream.flush();                    
    bif.close();
    stream.close();               
    return res;
    } catch(Exception e) {
    System.out.println("The Exception in MainServlet is :"+e);
    finally {
    if (stream != null)
    stream.close();
    return res;
    }//end of method
    </Code>
    Thanks a million in advance,
    Regards
    Sam

  • Servlet problem: (Shay Shmeltzer / Steve Muench / Frank Nimphius)

    Dear sirs... (Shay Shmeltzer / Steve Muench / Frank Nimphius)
    I hope you can give me an answer.
    I created an ADF UIX application using JDeveloper 10.1.2. I have created a servlet to download files. my problem is that it works just fine using jdeveloper, while when deployed into oracle application server it causes errors.i am calling this servlet by storing filename and data in the session, then sending redirect request to the browser.
    the servlet code is:
    package view;
    import java.io.OutputStream;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.PrintWriter;
    import java.io.IOException;
    public class FileDownload extends HttpServlet
    public void init(ServletConfig config) throws ServletException
    super.init(config);
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
    try
    String DownloadFileName=(String) request.getSession().getAttribute("downloadfilename");
    byte data[]=(byte []) request.getSession().getAttribute("downloadfiledata");
    if (DownloadFileName==null)
    return;
    request.getSession().removeAttribute("downloadfilename");
    request.getSession().removeAttribute("downloadfiledata");
    response.setContentType("application/octet-stream");
    response.setHeader("Content-Disposition", "attachment;filename="+DownloadFileName);
    response.setContentLength(data.length);
    OutputStream OS=response.getOutputStream();
    OS.write(data);
    catch (Exception e)
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
    try
    String DownloadFileName=(String) request.getSession().getAttribute("downloadfilename");
    byte data[]=(byte []) request.getSession().getAttribute("downloadfiledata");
    if (DownloadFileName==null)
    return;
    request.getSession().removeAttribute("downloadfilename");
    request.getSession().removeAttribute("downloadfiledata");
    response.setContentType("application/octet-stream");
    response.setHeader("Content-Disposition", "attachment;filename="+DownloadFileName);
    response.setContentLength(data.length);
    OutputStream OS=response.getOutputStream();
    OS.write(data);
    catch (Exception e)
    and the error is :
    java.lang.IllegalStateException: Response has already been committed
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.EvermindHttpServletResponse.resetBuffer(EvermindHttpServletResponse.java:1902)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:213)
    this error is stored in the log file. if i am running this code from JDeveloper I can download the files using either FireFox or Internet Explorer without any error.
    but if i am running this code using Oracle Application Server 10g Realse 2, i can not download the files using either FireFox or IE.
    so i created another solution, instead of redirecting from a datapage into the servlet, i put the following code in a data page as follows:
    public void onDownload(DataActionContext ctx)
    String DownloadFileName=getfilename();
    byte data[]=getdata();
    response.setContentType("application/octet-stream");
    response.setHeader("Content-Disposition", "attachment;filename="+DownloadFileName);
    response.setContentLength(data.length);
    OutputStream OS=response.getOutputStream();
    OS.write(data);
    OS.flash();
    this time the application works fine when deployed into Oracle Application Server if you use FireFox, but if you use IE, it causes problem, i can not save the file or view it.
    what is the problem?
    how can i fix this?
    i am certin that the second method is not correct and it should not be used.
    thanks for everyone in advance
    best regards

    Dear Sir...
    Thanks alot for your replay
    regarding the reset method. Itried it and it does not give any good.
    I discovered the following problem:
    If you are redirecting from with struts dataaction page to the servlet, you get the error
    Otherwise if you called the servlet from directly or redirected to a servlet from within a servlet, you get no problem.
    can any one help me please??
    Is it possible that the problem is in IE itself? The file is downloaded perfectly fine with firefox(but the error log still appear)?
    best regards

  • How to specify the download file name??

    Hi guys~~~
    I have servlet which can generate a *.pdf file,I found if I didn't setContentType="application/pdf",I can download it!!But the download file name is my servlet file name.If I want to change the download file name,How do I do????
    thanx a lot!!!Best regard!

    Thanx for ur help...But I encounter a new charllenge now...
    I use a javascript(window.open("/myservlet")) to open the download file servlet.
    Everything is okay.But when I finish downloading the file which window I opened cant close itself automatically.
    I am really not understand the header parameter of the HTML header,could someone give me something about this??
    Thanx again!!!!

  • Inadvertent click over 'clear list' crashed the list of downloaded files.How to retrieve that list?

    I was downloading the Firefox -5 update yesterday(07-07-2011),
    while the process was going on,the 'clear list' tab situated in the left side lower corner was pressed by me inadvertently causing disappearance of the list of all other completed,incomplete and
    failed downloaded files.The problem is how to retrieve the aforesaid
    list of the downloaded files.Can the downloaded files themselves
    also be crashed due to this mistake?If it is so,which is the way to
    retrieve those files also?

    Sorry again for the Windows menu paths, on Linux use Edit > Preferences instead of Firefox/Tools > Options as I've posted before.
    I never told you to disable settings in that part to the history settings, you did that yourself ([[/questions/897299#answer-276610]]).<br />
    I told you to check the settings in "Clear history when Firefox closes"
    Did you try to delete the downloads.sqlite file in case there is a problem with the file?
    Did you check the permissions for all files in the Firefox Profile Folder?
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.org/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Downloading files from a servlet...

    Everything is working except...
    The first problem we have run into during testing is that when two users click on the same file for downloading, the servlet locks up for one request while handling the second request. When the first request is finished, the second one carries on. Not a good thing with larger files, but, this is understandable due to servlets not being multi-threaded.
    We attempted to fix that problem by synchronizing the reading/writing of the file. A new problem arose, when both users download the file, one user gets a majority of the server bandwidth, while the other gets very little. (i.e. 400k per sec. vs. 40k per sec.)
    Does anyone have a suggestion on how to manipulate the resources to balance the download bandwidth equally amongst clients while still using the servlet.
    (Using servlets is a necessity due to the application design)

    Servlets not multi-threaded? Well, you can do some work to make them not multi-threaded, but by default they are multi-threaded. And I don't see why you would need to do any synchronization, either. Perhaps the problem lies in your servlet container. Most of them will create multiple threads that reference the same servlet, if they need to handle multiple requests. But I don't know how they handle load-balancing between requests.

  • Mangled file downloads over http problem in 10g

    I have a web app running in an OC4J stand alone 10.1.3.3 and am having a problem with downloading files over http. Its a struts2 app whose file downloading impl is easy to use and standard code for writing to an http servlet response output stream.
    Using the firefox plugin for Live Headers I can see that the headers are correctly added to the servlet response and I do get the file I want. However the file has been mangled with binary output around the text. This is the case for txt, word, or any other file.
    This problem does not occur in Jetty or Tomcat. I've also ruled out file corruption while going in/out of the database since I can upload a file when running oc4j, turn off oc4j, start up my app in Jetty and retrieve the same file just fine.
    The mime types are all accounted for and the problem exists regardless if I use a specific content type or just application/download. My browsers (firefox and ie) also recognize all files from the content disposition value "attachment; filename=myfilename.ext". Its just the file content that some how has been wrecked on the way out of the container.
    Has anyone experienced this? I only found one or two unanswered posts elsewhere.
    How can this be mitigated?
    Thanks in advance.
    Andrew

    Figured it out when I realized it was in fact the data coming from the database that was corrupt. There were some older posts on the hibernate website that pointed to a single property that needs to go in the hibernate.properties file: hibernate.jdbc.use_streams_for_binary=true. Without it, Oracle returns the Blob locator consistently 86 bytes in length and therefore bad binary.

  • Problem with downloading file from FTP server

    Hello all
    I have uploaded a file from an application i developed and i want to download this file from another application. The code is
    public static void FTPcon() throws FtpException{
       String hostname = "my.ftp.server";
       String username = "myusername";
       String password = "mypass";
       Ftp ftp = new Ftp(hostname,username,password);
       ftp.setHostname(hostname);
            ftp.setUsername(username);
            ftp.setPassword(password);
            ftp.connect();
            ftp.setBinary();
            ftp.download("file.dat");
            ftp.disconnect();
    }The error i receive is java.io.FileNotFoundException: public.dat (The system cannot find the file specified) but the file is on the server.
    Thanks in advance for any help

    Cotton thank you for your reply
    Any other sugestions please?The server disagrees. So...
    - the file does not existThe file exists.I checked it with an FTP client program.
    - the file has a different nameThe file name is correct
    - you are connected to the wrong serverI am connecting to the correct server
    - you are in the wrong ftp directoryThe file is placed in the home directory
    - the ftp library you are using is broken (less
    likely)I am using the library from jscape.I dont think is broken because i can upload the file from the first application.
    >
    FTP isn't somehow broken in Java. I use it all the
    time. The problem is something listed above. I would
    check all of the first four if I were you because
    that's most likely where the problem is.Message was edited by:
    flightcaptain

  • Names of downloaded files appear in Downloads Window only if that window is open during download. I run Firefox 4 on windows xp 32 bit sp3. I didn't have such problem with Firefox 3. Can somebody please help me?

    When I download a file with firefox 4 Downloads Window opens but downloading file name doesn't appear there. If I keep Downloads Window open further downloads appear in it but if i close it and reopen it again it appears blank, all downloaded file names are disappeared. I tried everything, unchecked "Remember download history" box and checked it again, deleted downloads.sqlite file, even created new profile but nothing helped.

    It is easy for me to explain things badly, and I can not see what you are actually doing, I will therfore try to list as steps to take.
    Please confirm that you have used firefox safe mode and still see the problem, by doing the following:
    # open firefox - use any profile
    # use '''Firefoxbutton -> Help -> Restart with add-ons disabled'''
    # you should now see an options dialogue with a list of check box options,
    #*you may get a confirmation option, if so accept it
    #* do you now see the listing of check boxes, with a continue button at the bottom
    #without making any changes, click the continue with safemode
    # firefox should now restart in safe-mode
    Now try the downloading, whilst we know you are in safe mode.
    # once a download has completed, use the option to open the containing folder that you see in your download manager
    ## does that option work ok,
    ## does it open a folder with downloads in it, make a note of the folders path/location/name
    ## do you see the downloaded file you just downloaded
    ## if so regardless of what the downloads folder says you have found the downloads
    ## close firefox and the folders with the downloads
    ## are you now able to reopen the 'containing' folder and find the downloads <br />( use Windows Explorer, not clicking on firefox, - firefox is closed)
    ## close the folder again
    ## open firefox, this time no need to be in safe mode
    ## look again for the containing folder whose name you noted down, does it still contain the downloads
    #'''IF''' you are getting problems now that you are in safe mode read the article about [[Unable to download or save files]]
    ## the article has several steps it suggests you try,
    ## please try all the steps in turn and report what happens with each step

  • Hi im having huge problems trying to install flash for my mac 10.5 imac, iv gone through the internet and tried all of the solutions, everytime i try to install flash it says cant read the download file, or it just wont install, anybody plz help!

    hi im having huge problems trying to install flash for my mac 10.5 imac, iv gone through the internet and tried all of the solutions, everytime i try to install flash it says cant read the download file, or it just wont install, anybody plz help!
    iv unistalled flash, iv checked plug ins it just wont work,

    It would have been a great help to know precisely what Mac you have, so some of the following may not apply:
    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS. Note that version 10,1,102,64 is the last version available to PPC Mac users*. The latest version,10.3.183.23 or later, is for Intel Macs only running Tiger or Leopard, as Adobe no longer support the PPC platform. Version 11.4.402.265 or later is for Snow Leopard onwards.
    (If you are running Mavericks: After years of fighting malware and exploits facilitated through Adobe's Flash Player, the company is taking advantage of Apple's new App Sandbox feature to restrict malicious code from running outside of Safari in OS X Mavericks.)
    * Unhelpfully, if you want the last version for PPC (G4 or G5) Macs, you need to go here:  http://kb2.adobe.com/cps/142/tn_14266.html  and scroll down to 'Archived Versions/Older Archives'. Flash Player 10.1.102.64 is the one you download. More information here:  http://kb2.adobe.com/cps/838/cpsid_83808.html
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb2.adobe.com/cps/909/cpsid_90906.html
    and also that you follow the instructions closely, such as closing ALL applications (including Safari) first before installing. You must also carry out a permission repair after installing anything from Adobe.
    After installing, reboot your Mac and relaunch Safari, then in Safari Preferences/Security enable ‘Allow Plugins’. If you are running 10.6.8 or later:
    When you have installed the latest version of Flash, relaunch Safari and test.
    If you're getting a "blocked plug-in" error, then in System Preferences… ▹ Flash Player ▹ Advanced
    click Check Now. Quit and relaunch your browser.
    You can also try these illustrated instructions from C F McBlob to perform a full "clean install", which will resolve the "Blocked Plug-in" message when trying to update via the GUI updater from Adobe.
    Use the FULL installer for 12.0.0.44:  Flash Player 12 (Mac OS X)
    And the instructons are here: Snow Leopard Clean Install.pdf
    (If you are running a PPC Mac with Flash Player 10.1.102.64 and are having problems with watching videos on FaceBook or other sites, try the following solution which fools the site into thinking that you are running the version 11.5.502.55:)
    Download this http://scriptogr.am/nordkril/post/adobe-flash-11.5-for-powerpc to your desktop, unzip it, and replace the current Flash Player plug-in which is in your main/Library/Internet Plug-Ins folder, (not the user Library). Save the old one just in case this one doesn't work.

  • Download file from UNIX to EXCEL problem

    Hi,
    I am trying to download file from UNIX server to excel file, there is one column which is messing up and that is number 100000000000000002 (18 in length) it is writing as 1E+17, funny thing is when I click on that cell it is showing as
    100000000000000000.
    I am using GUI_DOWNLOAD to download to excel, below is the output excel format, I am talking about 4th value from left
    GUID    leg_reg     lic_type     lic_num     ex_lic_num     vali_from     valid_to     created_by
    3E633B85C05E6F28E100     EAR     ENC     1E+17     ENC     20030305     20930305     VANRIJ
    below is the program I am using to download the output from UNIX to excel
    FORM get_data_file.
      OPEN DATASET p_unxfil FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      IF sy-subrc = 0.
        DO.
          READ DATASET p_unxfil INTO input_file_tab-line_string.
          IF sy-subrc <> 0.
            EXIT.
          ENDIF.
          APPEND input_file_tab.
          CLEAR  input_file_tab.
        ENDDO.
      ELSE.
        PERFORM write_message USING 'ZZ' 'E' '000'
          'Unable to find file' p_unxfil
          '  Press Enter key to exit.' ''.
      ENDIF.
      CLOSE DATASET p_unxfil.
      DESCRIBE TABLE input_file_tab LINES record_cnt.
    ENDFORM.                    " get_data_file
    FORM create_pc_file.
      DATA: l_file TYPE string.
      MOVE p_pcfile TO l_file.
    Save the file
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = l_file
        TABLES
          data_tab                = input_file_tab
        EXCEPTIONS
          file_write_error        = 1
          no_batch                = 2
          gui_refuse_filetransfer = 3
          invalid_type            = 4
          no_authority            = 5
          unknown_error           = 6
          header_not_allowed      = 7
          separator_not_allowed   = 8
          filesize_not_allowed    = 9
          header_too_long         = 10
          dp_error_create         = 11
          dp_error_send           = 12
          dp_error_write          = 13
          unknown_dp_error        = 14
          access_denied           = 15
          dp_out_of_memory        = 16
          disk_full               = 17
          dp_timeout              = 18
          file_not_found          = 19
          dataprovider_exception  = 20
          control_flush_error     = 21
          OTHERS                  = 22.
      IF sy-subrc NE 0.
        WRITE: / 'Error creating pc file', p_pcfile.
        EXIT.
    endif.
    I will assure of points.
    Thanks for your help
    Sarath

    It is not the problem of your program. This happens becuase of the "nature" of the excel. You need to retain the text property of that column.
    Try like this:
    1. Download the file in .txt
    2. Open Excel .. blank sheet
    3. Now, click on Open. Select your .txt file
    4. One pop up will come ..."Text Import Wizard"
    5. Select the fixed width or Delimited ... Press Next ...
    6. Select appropriate delimitors or fixed length .. press Next
    7. Select your coulumn (which has the problem), Select the "Text" radiobutton on the upper-right corner and finish.
    Regards,
    Naimesh Patel

  • Japanese character problem while downloading file to application server

    Hello All,
    We are facing a strange problem while downloading a file to application server when file contains japanese text.
    We are downloading vendor and customer information in a flat file format on application server. When the login language is EN program show ouput in a properly formatted manner.
    When the login language is JA (japanese) program does download file with customer vendor data. I can see the description is japanese language but the formatting is gone for a toss.
    We are facing similar issue with other programs downloading files on the application server.
    I am using OPEN DATASET........ENCODING DEFAULT. and working on unicode enabaled ECC 6.0 system
    Quick help appriciated.
    Thanks!

    Hi
    Sometimes this also happens because of your desktop setting.Make sure that your OS also supports the JAPANESSE language.
    Ask your technical support team to enable them in your desktop.
    Thanks & Regards
    Jyo

  • Problem downloading from servlet in WLS6

    A servlet running in WLS6 is used for downloading files. When the file is
              selected in IE5 the dialog asking what to do with the file (open from
              current location/save) opens. If the file is small enough the service
              request is handled (file written to ServletOuputStream and stream flushed &
              closed) at the servlet side BEFORE a selection in this dialog is even made!
              So if the user selects cancel from the first dialog when the actual download
              has not even started, then it seems at the server side that the user
              downloaded the file.
              How can I change this behaviour so that nothing is written in to the
              ServletOutputStream until the client is actually receiving? I have tried to
              modify buffer size and flush all the time without success!
              

    Hi Gareth,
    I don't think it's possible to donwload classes from R/3 to CRM. It was possible between CRM 2.0c & R/3, but was deactivated as a standard functionality because the data models for classes in the two systems are to different.
    What kind of classification data would you like to download?
    Kind regards,
    Michaael.

  • Problem downloading file's from a .php cart

    Having problems downloading files form a php based cart software, but Firefox works fine and also on a PC they download on Explorer fine, is there a setting on Safari to fix this or is there another way around this.

    Welcome to Apple Discussions
    Usually, this type of content doesn't work on Safari due to a PC mentality when coding the site. Here, Firefox etc. are better able to read this code.
    Also, a good reason for having alternate browsers from which to choose.

Maybe you are looking for

  • Result Set Causing out of memory issue

    Hi, I am having trouble to fix the memory issue caused by result set.I am using jdk 1.5 and sql server 2000 as the backend. When I try to execute a statement the result set returns minimum of 400,000 records and I have to go through each and every re

  • CO_Order cannot be archived

    We have CO_Order that have the delete indicator set under the old SAP version 3.1. These orders have status DLT. We have since moved to version 4.7, and would like to actually archive these orders, but the system will not perform the archive for thes

  • Automatic Update wiped my library

    Two weeks ago, the day before due to fly to UK I accepted an automatic update. Later that day I went into itunes to play music and found my entire library wiped clean, empty! Searched my hardrive for missing files but could find none. Then tried look

  • Function(){return A.apply(null,[this],concat($A(arguments)))}

    The message in the title keeps popping up and disappearing where the cursor is or was or randomly when reading threads on this forum. What is this annoyance and how do I get rid of it? Using Windows XP.

  • Product: HP Pavillion dv5 Operating System: Windows 7 64-bit Problem: Smart Hard Disk Error Disk

    How do I fix Smart Hard Dtive Disk Error WDC WD3200BEKT 60V5T1